반응형
문제 정보
제출 코드
m = int(input())
n = int(input())
total = n-m+1
sum_v = 0
min_v = 0
for i in range(m,n+1):
if(i==2):
sum_v += i
min_v = i
for j in range(2,i):
if(i%j==0):
total -= 1
break
if(j==i-1):
sum_v += i
if(min_v==0):
min_v = i
if(total==0 or min_v==0):
print(-1)
else:
print(sum_v)
print(min_v)
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 1929번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 11653번 Python (0) | 2021.10.04 |
[백준 알고리즘] 1011번 Python (0) | 2021.10.04 |
[백준 알고리즘] 10757번 Python (0) | 2021.10.04 |
[백준 알고리즘] 2839번 Python (0) | 2021.10.04 |
댓글