본문 바로가기
파이썬/백준

4948번 : 베르트랑 공준

by L_SU 2022. 7. 17.
# 베르트랑 공준

while 1:
    n = int(input())
    if (n != 0 and n > 1):
        result_sub = 0
        result = []
        for i in range(n+1, n*2+1):
            for j in range(2, n):
                if i % j == 0:
                    result_sub = 0
                    break
                else:
                    result_sub = i
            if result_sub != 0:
                result.append(result_sub)
        print(len(result))
    elif n == 1:
        print(n)
    else:
        break

'파이썬 > 백준' 카테고리의 다른 글

1929번 : 소수 구하기  (0) 2022.07.20
6588번 : 골드바흐의 추측  (0) 2022.07.19
1676번 : 팩토리얼 0의 개수  (0) 2022.07.16
2309번 : 일곱 난쟁이  (0) 2022.07.15
11726번 : 2xn 타일링  (0) 2022.07.09