結果

問題 No.1661 Sum is Prime (Hard Version)
ユーザー 👑 KazunKazun
提出日時 2021-08-27 21:58:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,312 ms / 3,000 ms
コード長 953 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 81,920 KB
最終ジャッジ日時 2024-12-30 16:50:00
合計ジャッジ時間 13,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#Thanks for https://judge.yosupo.jp/submission/33263
from math import sqrt
def prime_counting(n):
    if n<=1:
        return 0

    n2 = int(n ** 0.5)
    ndn2 = int(n / n2)
    hl = [0] * ndn2
    for i in range(1, ndn2):
        hl[i] = int(n / i) - 1
    hs = list(range(-1, n2))
    pi = 0
    for x in range(2, n2 + 1):
        if hs[x] == hs[x - 1]:
            continue
        x2 = x * x
        imax = min(ndn2, int(n / x2) + 1)
        ix = x
        for i in range(1, imax):
            if ix < ndn2:
                hl[i] -= hl[ix]
            else:
                hl[i] -= hs[int(n / ix)]
            hl[i] += pi
            ix += x
        for k in range(n2, x2 - 1, -1):
            hs[k] -= hs[int(k / x)] - pi
        pi += 1
    return hl[1]
#==================================================
L,R=map(int,input().split())

alpha=prime_counting(R)-prime_counting(L-1)
beta =prime_counting(2*R)-prime_counting(2*L)

print(alpha+beta)
0