結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー とりゐとりゐ
提出日時 2021-08-27 21:48:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 92,396 KB
最終ジャッジ日時 2024-11-21 01:35:28
合計ジャッジ時間 4,343 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
88,448 KB
testcase_01 AC 112 ms
87,996 KB
testcase_02 AC 114 ms
91,324 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 115 ms
90,036 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 115 ms
88,116 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 113 ms
90,056 KB
testcase_12 AC 129 ms
91,560 KB
testcase_13 AC 124 ms
92,396 KB
testcase_14 AC 128 ms
91,484 KB
testcase_15 AC 118 ms
92,008 KB
testcase_16 AC 125 ms
91,232 KB
testcase_17 AC 119 ms
92,244 KB
testcase_18 AC 114 ms
91,684 KB
testcase_19 AC 120 ms
90,824 KB
testcase_20 AC 121 ms
91,008 KB
testcase_21 AC 113 ms
90,456 KB
testcase_22 AC 115 ms
90,404 KB
testcase_23 AC 127 ms
91,276 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<=i<=2:
      ans+=1
    continue
  if l<=i<=r:
    ans+=1
  if l<=(i-1)//2<=r:
    ans+=1
print(ans)
0