結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー ntudantuda
提出日時 2021-08-28 17:00:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,979 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 258,364 KB
最終ジャッジ日時 2024-11-21 21:07:25
合計ジャッジ時間 20,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,536 KB
testcase_01 AC 40 ms
53,240 KB
testcase_02 AC 1,854 ms
250,076 KB
testcase_03 AC 40 ms
52,324 KB
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 40 ms
52,760 KB
testcase_06 AC 52 ms
63,860 KB
testcase_07 AC 46 ms
59,728 KB
testcase_08 AC 51 ms
61,312 KB
testcase_09 AC 52 ms
61,568 KB
testcase_10 AC 55 ms
64,128 KB
testcase_11 AC 62 ms
67,456 KB
testcase_12 AC 1,839 ms
250,848 KB
testcase_13 AC 942 ms
258,092 KB
testcase_14 AC 1,521 ms
255,444 KB
testcase_15 AC 1,567 ms
255,452 KB
testcase_16 AC 642 ms
229,504 KB
testcase_17 AC 757 ms
255,872 KB
testcase_18 AC 842 ms
256,384 KB
testcase_19 AC 1,696 ms
253,496 KB
testcase_20 AC 1,133 ms
258,364 KB
testcase_21 AC 1,979 ms
250,508 KB
testcase_22 AC 1,874 ms
250,384 KB
testcase_23 AC 1,852 ms
249,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,R = map(int,input().split())

def seachPrimeNum(N):
    max = int(N**0.5)
    seachList = [i for i in range(2,N+1)]
    primeNum = []
    while seachList[0] <= max:
        primeNum.append(seachList[0])
        tmp = seachList[0]
        seachList = [i for i in seachList if i % tmp != 0]
    primeNum.extend(seachList)
    return primeNum

P = set(seachPrimeNum(2*R))
ans = 0
for i in range(L,R):
    if i in P:
        ans += 1
    if 2*i+1 in P:
        ans += 1
if R in P:
    ans += 1
print(ans)
0