728x90 반응형 SMALL 백준문제/브론즈 538 백준) 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. 백준) 7891번 - python n = int(input()) for i in range(n): x,y = map(int,input().split()) print(x + y) 2024. 2. 24. 이전 1 2 3 4 5 6 7 8 ··· 10 다음 728x90 반응형 LIST