ps | |
---|---|
링크 | acmicpc.net/… |
출처 | BOJ |
문제 번호 | 1456 |
문제명 | 거의 소수 |
레벨 | 실버 1 |
분류 |
소수 목록 찾기 |
시간복잡도 | O(sqrt(n)*loglogn) |
인풋사이즈 | n<=10^14 |
사용한 언어 | Python |
제출기록 | 147204KB / 632ms |
최고기록 | 484ms |
해결날짜 | 2022/04/04 |
"""Solution code for "BOJ 1456. 거의 소수".
- Problem link: https://www.acmicpc.net/problem/1456
- Solution link: http://www.teferi.net/ps/problems/boj/1456
"""
from teflib import numtheory
def main():
A, B = [int(x) for x in input().split()]
primes = numtheory.prime_list(int(B**0.5))
answer = 0
for p in primes:
t = p * p
while t < A:
t *= p
while t <= B:
answer += 1
t *= p
print(answer)
if __name__ == '__main__':
main()