結果

問題 No.1661 Sum is Prime (Hard Version)
ユーザー tassei903tassei903
提出日時 2021-08-27 22:49:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 857 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 274,032 KB
最終ジャッジ日時 2024-12-30 16:52:49
合計ジャッジ時間 49,535 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,472 KB
testcase_01 AC 47 ms
227,720 KB
testcase_02 TLE -
testcase_03 WA -
testcase_04 AC 46 ms
57,728 KB
testcase_05 AC 48 ms
251,832 KB
testcase_06 AC 52 ms
63,616 KB
testcase_07 AC 46 ms
57,728 KB
testcase_08 AC 55 ms
63,872 KB
testcase_09 AC 51 ms
57,984 KB
testcase_10 AC 52 ms
58,368 KB
testcase_11 AC 51 ms
58,496 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,559 ms
115,188 KB
testcase_19 AC 2,534 ms
151,272 KB
testcase_20 AC 1,601 ms
114,068 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################



import math

def pi(n):
    if n<=1:
        return 0
    m = int(math.sqrt(n))
    keys = [n // i for i in range(1, m + 1)]
    keys += range(keys[-1] - 1, 0, -1)
    h = {i : i - 1 for i in keys}
    for i in range(2, m + 1):
        if h[i] > h[i - 1]:
            hp = h[i - 1]
            i2 = i * i
            for j in keys:
                if j < i2: break
                h[j] -= h[j // i] - hp

    return h[n]

L,R = na()
print(pi(R)-pi(L-1)+pi(2*R-1)-pi(2*L))
0