728x90 반응형 SMALL programming379 백준) 14645번 - python n, m = map(int, input().split()) while True: if n == 0: print("비와이") break else: a,b = map(int, input().split()) m += a-b n -= 1 2024. 2. 29. 백준) 11021번 - python T = int(input()) for i in range(1, T+1): a, b = map(int, input().split()) print(f"Case #{i}: {a+b}") 2024. 2. 28. 백준) 10818번 - python n = int(input()) a = list(map(int, input().split())) a.sort() min,max = a[0], a[n-1] print(min, max) 2024. 2. 27. 백준)10817번 - python a,b,c = map(int,input().split()) lst = [a,b,c] lst.sort() print(lst[1]) 2024. 2. 26. 이전 1 ··· 84 85 86 87 88 89 90 ··· 95 다음 728x90 반응형 LIST