結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 90 ms
89,876 KB
testcase_02 AC 99 ms
91,748 KB
testcase_03 AC 88 ms
87,860 KB
testcase_04 AC 93 ms
88,492 KB
testcase_05 WA -
testcase_06 AC 93 ms
89,456 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 94 ms
90,652 KB
testcase_10 AC 94 ms
89,248 KB
testcase_11 AC 95 ms
90,296 KB
testcase_12 AC 96 ms
91,300 KB
testcase_13 AC 95 ms
92,408 KB
testcase_14 AC 96 ms
91,136 KB
testcase_15 AC 95 ms
91,300 KB
testcase_16 AC 98 ms
91,360 KB
testcase_17 AC 95 ms
91,752 KB
testcase_18 AC 99 ms
91,916 KB
testcase_19 WA -
testcase_20 AC 97 ms
91,276 KB
testcase_21 AC 91 ms
90,296 KB
testcase_22 AC 91 ms
88,988 KB
testcase_23 AC 99 ms
91,064 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