728x90 반응형 SMALL programming382 백준) 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. 백준) 8393번 - python n = int(input()) count = 0 for i in range(1, n+1): count += i print(count) 2024. 2. 25. 이전 1 ··· 85 86 87 88 89 90 91 ··· 96 다음 728x90 반응형 LIST