728x90 반응형 SMALL 전체 글380 백준) 13866번 - python a = list(map(int, input().split())) a.sort() print(abs(a[3] + a[0] - (a[2] + a[1]))) 2024. 4. 17. 백준) 13752번 - python for i in range(int(input())): a = int(input()) print("=" * a) 2024. 4. 16. 백준) 11948번 - python grade = [int(input()) for i in range(6)] nature = grade[0:4] nature.sort(reverse=True) history = grade[4:6] history.sort(reverse=True) print(sum(nature[0:3]) + history[0]) 2024. 4. 15. 백준) 11945번 - python n,m = map(int,input().split()) lst = [] for i in range(n): a = list(map(int,input())) a.reverse() lst.append(a) for row in lst: for element in row: print(element, end="") print() 2024. 4. 14. 이전 1 ··· 72 73 74 75 76 77 78 ··· 95 다음 728x90 반응형 LIST