結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-08-27 22:09:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,620 KB
実行使用メモリ 143,808 KB
最終ジャッジ日時 2024-11-21 02:40:41
合計ジャッジ時間 10,528 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 356 ms
140,144 KB
testcase_01 AC 361 ms
139,960 KB
testcase_02 AC 401 ms
142,852 KB
testcase_03 AC 357 ms
140,504 KB
testcase_04 AC 363 ms
139,628 KB
testcase_05 AC 360 ms
139,400 KB
testcase_06 AC 392 ms
141,836 KB
testcase_07 AC 389 ms
140,432 KB
testcase_08 AC 350 ms
140,672 KB
testcase_09 AC 360 ms
141,244 KB
testcase_10 AC 351 ms
141,808 KB
testcase_11 AC 418 ms
141,484 KB
testcase_12 AC 392 ms
142,488 KB
testcase_13 AC 398 ms
142,636 KB
testcase_14 AC 395 ms
142,624 KB
testcase_15 AC 401 ms
142,124 KB
testcase_16 AC 401 ms
142,592 KB
testcase_17 AC 398 ms
142,360 KB
testcase_18 AC 402 ms
143,808 KB
testcase_19 AC 395 ms
143,184 KB
testcase_20 AC 342 ms
143,728 KB
testcase_21 AC 389 ms
140,752 KB
testcase_22 AC 393 ms
140,932 KB
testcase_23 AC 410 ms
142,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = [0] * (10 ** 7 + 1)
l[1]= 1
for i in range(2,int((10 ** 7) ** (1/2)) + 1):
    if l[i] == 0:
        n = i  * 2
        cnt = 2
        while n <= 10 ** 7:
            l[n] = 1
            cnt += 1
            n = i * cnt
L,R = map(int,input().split())
ans = 0
for i in range(1,10 ** 7 + 1):
    if L<= i <= R:
        if l[i] == 0:
            ans += 1
    if l[i] == 0:
        if i & 1:
            if L <= (i-1)//2 and (i+1)//2 <= R:
                ans += 1
print(ans)
0