結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
87,868 KB
testcase_01 AC 137 ms
89,516 KB
testcase_02 AC 149 ms
90,908 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 148 ms
87,856 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 134 ms
88,524 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 152 ms
90,376 KB
testcase_12 AC 152 ms
92,112 KB
testcase_13 AC 183 ms
90,884 KB
testcase_14 AC 146 ms
91,620 KB
testcase_15 AC 153 ms
91,076 KB
testcase_16 AC 145 ms
92,004 KB
testcase_17 AC 146 ms
91,968 KB
testcase_18 AC 140 ms
91,320 KB
testcase_19 AC 143 ms
90,932 KB
testcase_20 AC 136 ms
91,604 KB
testcase_21 AC 143 ms
89,848 KB
testcase_22 AC 130 ms
89,128 KB
testcase_23 AC 170 ms
91,688 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 l<=i<=r:
    ans+=1
  if l<=(i-1)//2<=r:
    ans+=1
print(ans)
0