728x90 반응형 SMALL 백준문제105 백준) 14489번 - python a,c=map(int, input().split()) b = int(input()) print(a + c if a + c < b * 2 else a + c - b * 2) 2024. 4. 19. 백준) 14470번 - python a = int(input()) b = int(input()) c = int(input()) d = int(input()) e = int(input()) print(c * abs(a) + d + b * e if a < 0 else (b - a) * e) 2024. 4. 18. 백준) 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. 이전 1 ··· 3 4 5 6 7 8 9 ··· 27 다음 728x90 반응형 LIST