Python158 백준 - 10951 a+b -4 while True: try: a, b = map(int, input().split()) print(a+b) except: break 2022. 10. 25. 백준 - 10807 개수 세기 n = int(input()) num = list(map(int, input().split())) m = int(input()) count = 0 for i in num: if i == m: count += 1 print(count) 2022. 10. 24. 백준 - 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. 이전 1 2 3 4 5 6 ··· 40 다음