結果

問題 No.1661 Sum is Prime (Hard Version)
ユーザー convexineqconvexineq
提出日時 2021-08-28 20:55:07
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 667 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 100,096 KB
最終ジャッジ日時 2024-12-30 16:57:39
合計ジャッジ時間 31,235 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 2,323 ms
89,856 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 48 ms
58,496 KB
testcase_07 AC 45 ms
52,096 KB
testcase_08 AC 47 ms
58,240 KB
testcase_09 AC 48 ms
58,632 KB
testcase_10 AC 52 ms
58,624 KB
testcase_11 AC 47 ms
58,752 KB
testcase_12 AC 1,978 ms
87,808 KB
testcase_13 AC 1,947 ms
87,296 KB
testcase_14 AC 2,196 ms
90,112 KB
testcase_15 AC 2,908 ms
96,268 KB
testcase_16 AC 2,387 ms
91,084 KB
testcase_17 AC 2,165 ms
89,216 KB
testcase_18 AC 920 ms
76,160 KB
testcase_19 AC 1,650 ms
84,480 KB
testcase_20 AC 1,008 ms
77,696 KB
testcase_21 AC 1,947 ms
83,456 KB
testcase_22 AC 1,407 ms
77,312 KB
testcase_23 TLE -
testcase_24 AC 2,943 ms
95,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_counting(n):
    if n <= 1: return 0
    r = int(n**0.5)
    assert r*r <= n < (r+1)**2
    V = [0] + [n//i for i in range(1,r+1)] + list(range(n//r-1,0,-1))
    S = [i-1 for i in V]
    for p in range(2,r+1):
        if S[-p] > S[-p+1]:  # p is prime
            sp = S[-p+1]  # number of primes smaller than p
            p2 = p*p
            for i in range(1,2*r+1):
                v = V[i]
                if v < p2: break
                S[i] -= (S[-(v//p) if v//p <= r else i*p] - sp)
    return S[1]

L,R = map(int,input().split())
ans = prime_counting(R) - prime_counting(L-1)
if L < R: ans += prime_counting(2*R-1) - prime_counting(2*L)
print(ans)
0