結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー ntudantuda
提出日時 2021-08-28 17:00:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,852 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 258,448 KB
最終ジャッジ日時 2024-05-01 16:01:23
合計ジャッジ時間 19,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 1,792 ms
250,748 KB
testcase_03 AC 36 ms
53,068 KB
testcase_04 AC 36 ms
52,608 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 46 ms
63,744 KB
testcase_07 AC 42 ms
59,648 KB
testcase_08 AC 45 ms
61,568 KB
testcase_09 AC 44 ms
62,592 KB
testcase_10 AC 45 ms
64,384 KB
testcase_11 AC 49 ms
67,712 KB
testcase_12 AC 1,750 ms
251,776 KB
testcase_13 AC 890 ms
258,032 KB
testcase_14 AC 1,464 ms
255,564 KB
testcase_15 AC 1,505 ms
255,744 KB
testcase_16 AC 617 ms
229,940 KB
testcase_17 AC 724 ms
256,256 KB
testcase_18 AC 808 ms
256,744 KB
testcase_19 AC 1,625 ms
253,820 KB
testcase_20 AC 1,085 ms
258,448 KB
testcase_21 AC 1,852 ms
250,692 KB
testcase_22 AC 1,781 ms
250,592 KB
testcase_23 AC 1,770 ms
249,936 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