結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー とりゐとりゐ
提出日時 2021-08-27 21:51:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 367 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 92,456 KB
最終ジャッジ日時 2024-11-21 01:56:10
合計ジャッジ時間 3,491 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
88,636 KB
testcase_01 WA -
testcase_02 AC 97 ms
91,328 KB
testcase_03 AC 89 ms
88,796 KB
testcase_04 WA -
testcase_05 AC 89 ms
88,228 KB
testcase_06 AC 91 ms
89,088 KB
testcase_07 AC 89 ms
88,332 KB
testcase_08 AC 88 ms
88,048 KB
testcase_09 AC 92 ms
89,572 KB
testcase_10 AC 92 ms
89,744 KB
testcase_11 AC 95 ms
91,268 KB
testcase_12 AC 95 ms
90,776 KB
testcase_13 AC 97 ms
91,604 KB
testcase_14 AC 97 ms
91,388 KB
testcase_15 AC 95 ms
91,764 KB
testcase_16 AC 96 ms
92,456 KB
testcase_17 AC 96 ms
91,772 KB
testcase_18 AC 97 ms
91,412 KB
testcase_19 AC 95 ms
91,316 KB
testcase_20 AC 96 ms
91,624 KB
testcase_21 AC 91 ms
90,084 KB
testcase_22 AC 89 ms
88,832 KB
testcase_23 AC 97 ms
91,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#エラトステネスの篩
m=2*10**6
prime=[]
d=[-1]*(m+1)
for i in range(2,m+1):
  if d[i]==-1:
    d[i]=i
    prime.append(i)
    j=2
    while i*j<=m:
      d[i*j]=i
      j+=1
l,r=map(int,input().split())
ans=0
for i in prime:
  if i==2:
    if l<=2<=r:
      ans+=1
    continue
  if l<=i<=r:
    ans+=1
  if l<=(i+1)//2<=r:
    ans+=1
    #print(i)
print(ans)
0