結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-10 14:35:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 76,936 KB
最終ジャッジ日時 2024-06-25 20:56:14
合計ジャッジ時間 12,393 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 1,663 ms
76,160 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
52,480 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 46 ms
59,648 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 84 ms
76,288 KB
testcase_12 AC 1,525 ms
76,544 KB
testcase_13 AC 600 ms
76,160 KB
testcase_14 AC 820 ms
76,936 KB
testcase_15 AC 1,040 ms
76,384 KB
testcase_16 AC 299 ms
76,416 KB
testcase_17 AC 121 ms
76,296 KB
testcase_18 AC 189 ms
76,468 KB
testcase_19 AC 1,539 ms
76,844 KB
testcase_20 AC 471 ms
76,168 KB
testcase_21 AC 1,835 ms
76,160 KB
testcase_22 AC 38 ms
52,480 KB
testcase_23 AC 274 ms
76,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,r=map(int,input().split())
ans=0
import math
def isprime(n):
    if n < 2:
        return False
    if n == 2:
        return True
    if n % 2 == 0:
        return False
    for i in range(3, int(math.sqrt(n)) + 1, 2):
        if n % i == 0: return False
    return True
for a in range(l,r+1):
    if isprime(a):
        ans+=1
    if isprime(2*a+1):
        ans+=1
print(ans) 
0