백준2334 [백준/파이썬] 22061번 Покупка велосипеда -Codefor _ in range(int(input())): a, b, c = map(int, input().split()) if c % 2 == 1 and a == 0: print("NO") continue print("YES" if a + b * 2 >= c else "NO") 2024. 10. 19. [백준/파이썬] 5362번 Garbled Message -Codewhile True: try: line = input().replace("iiing", "th") print(line) except: break 2024. 10. 18. [백준/파이썬] 6736번 The Idiot of the Year Contest! -Codefrom math import factorialfor _ in range(int(input())): a, b = map(int, input().split()) print(str(factorial(a)).count(str(b))) 2024. 10. 17. [백준/파이썬] 4974번 ICPC Score Totalizer Software -Codewhile True: n = int(input()) if n == 0: break score = sorted([int(input()) for _ in range(n)])[1:-1] print(sum(score) // len(score)) 2024. 10. 16. [백준/파이썬] 24348번 ИЗРАЗ -Codenums = sorted(list(map(int, input().split())))res = max( nums[0] * nums[1] + nums[2], nums[0] + nums[1] * nums[2])print(res) 2024. 10. 15. [백준/파이썬] 14729번 칠무해 -Codefrom sys import stdininput = stdin.readlinescore = sorted([float(input()) for _ in range(int(input()))])for el in score[:7]: print(f"{el:.3f}") 2024. 10. 14. 이전 1 ··· 14 15 16 17 18 19 20 ··· 389 다음