파이썬127 2581번 : 소수 # 백준 2581번 소수 M = int(input()) N = int(input()) result = [] for i in range(M, N+1): no = 0 if i > 1: for j in range(2, i): if i % j == 0: no = 1 break if no == 0: result.append(i) if len(result) > 0: print(sum(result)) print(result[0]) else: print(-1) 2022. 7. 6. 201p <실전 문제> : 떡볶이 떡 만들기 # 떡볶이 떡 만들기 N, M = map(int, input().split()) CM = list(map(int, input().split())) result = 0 i = 0 while i = N: i = 0 else: CM[-1] -= 1 result += 1 CM.sort() print(CM[-1]) 2022. 7. 5. 197p <실전 문제> : 부품찾기 # 부품 찾기 N = int(input()) Nlist = input().split() M = int(input()) Mlist = input().split() for i in Mlist: on = 0 for j in Nlist: if i == j: on = 1 if on == 1: print("yes", end=" ") else: print("no", end=" ") 2022. 7. 4. 9085번 : 더하기 #더하기 n = int(input()) for i in range(n): result = 0 sn = int(input()) array = map(int, input().split()) for j in array: result += j print(result) 2022. 7. 3. 이전 1 ··· 9 10 11 12 13 14 15 ··· 32 다음