結果

問題 No.1657 Sum is Prime (Easy Version)
ユーザー timitimi
提出日時 2021-09-13 17:02:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-06-25 17:37:37
合計ジャッジ時間 3,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
74,624 KB
testcase_01 AC 96 ms
74,624 KB
testcase_02 AC 111 ms
76,928 KB
testcase_03 AC 98 ms
74,752 KB
testcase_04 AC 97 ms
74,368 KB
testcase_05 AC 99 ms
74,880 KB
testcase_06 AC 106 ms
76,032 KB
testcase_07 AC 99 ms
75,008 KB
testcase_08 AC 98 ms
75,008 KB
testcase_09 AC 99 ms
74,752 KB
testcase_10 AC 98 ms
74,624 KB
testcase_11 AC 103 ms
76,544 KB
testcase_12 AC 111 ms
76,544 KB
testcase_13 AC 106 ms
77,056 KB
testcase_14 AC 111 ms
76,544 KB
testcase_15 AC 108 ms
76,416 KB
testcase_16 AC 104 ms
76,416 KB
testcase_17 AC 101 ms
76,416 KB
testcase_18 AC 102 ms
76,416 KB
testcase_19 AC 110 ms
76,544 KB
testcase_20 AC 104 ms
76,800 KB
testcase_21 AC 112 ms
76,928 KB
testcase_22 AC 96 ms
75,136 KB
testcase_23 AC 109 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,R=map(int, input().split())
ans=0
D=[1]*(2*10**6+10)
D[0]=0
D[1]=0
for i in range(2,10**6+1):
  cnt=2
  if D[i]==1:
    while i*cnt<=2*10**6+5:
      D[i*cnt]=0
      cnt+=1
ans=0
if D[R]==1:
  ans+=1
for l in range(L,R):
  if D[l]==1:
    ans+=1
  a=2*l+1
  if D[a]==1:
    ans+=1
print(ans)
0