結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー googol_S0googol_S0
提出日時 2021-08-27 21:26:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 110,712 KB
最終ジャッジ日時 2024-11-21 00:49:08
合計ジャッジ時間 5,347 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
108,172 KB
testcase_01 AC 171 ms
108,192 KB
testcase_02 AC 221 ms
109,600 KB
testcase_03 AC 156 ms
108,796 KB
testcase_04 AC 153 ms
107,396 KB
testcase_05 AC 155 ms
108,644 KB
testcase_06 AC 162 ms
109,164 KB
testcase_07 AC 153 ms
107,972 KB
testcase_08 AC 154 ms
107,904 KB
testcase_09 AC 155 ms
108,956 KB
testcase_10 AC 161 ms
108,460 KB
testcase_11 AC 163 ms
109,876 KB
testcase_12 AC 218 ms
109,572 KB
testcase_13 AC 188 ms
109,840 KB
testcase_14 AC 187 ms
109,600 KB
testcase_15 AC 191 ms
109,932 KB
testcase_16 AC 169 ms
108,936 KB
testcase_17 AC 159 ms
109,696 KB
testcase_18 AC 162 ms
110,712 KB
testcase_19 AC 219 ms
109,440 KB
testcase_20 AC 163 ms
109,544 KB
testcase_21 AC 239 ms
110,316 KB
testcase_22 AC 160 ms
108,812 KB
testcase_23 AC 172 ms
110,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,R=map(int,input().split())
P=set()
M=2100000
F=[0]*M
for i in range(2,M):
  if F[i]:
    continue
  P.add(i)
  for j in range(i*2,M,i):
    F[j]=1
ANS=0
for i in range(L,R+1):
  if i in P:
    ANS+=1
  if i==R:
    break
  if i*2+1 in P:
    ANS+=1
print(ANS)
0