전체 글186 백준 - 5532 방학숙제 l = int(input()) a = int(input()) b = int(input()) c = int(input()) d = int(input()) if a % c != 0: day = (a//c) + 1 else: day = (a//c) if b % d != 0: day1 = (b//d) + 1 else: day1 = (b//d) if day > day1: day = day else: day = day1 print(l-day) 2022. 10. 23. 백준 - 111728 배열 합치기 n, m = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) arr = a + b arr.sort() print(*arr, sep=' ') sep 기억해 둘 것 2022. 10. 22. 백준 - 11004 K번째 수 n, k = map(int, input().split()) a = list(map(int, input().split())) a.sort() print(a[k-1]) 2022. 10. 21. 백준 - 2839 # 내 풀이 오류 n = int(input()) count = 0 etc = n % 5 if n % 5 == 0: count = n // 5 print(count) elif etc % 3 == 0: count = n // 5 count += (etc // 3) print(count) elif n % 3 == 0: count = n // 3 print(count) else: print("!") # 다른 사람의 풀이 num = int(input()) count = 0 while num >= 0: if num % 5 == 0: count += int(num // 5) print(count) break num -= 3 count += 1 else: print(-1) 2022. 10. 19. 이전 1 2 3 4 5 6 7 8 ··· 47 다음