結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー nebukuro09nebukuro09
提出日時 2016-10-19 14:16:42
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 678 ms / 1,000 ms
コード長 397 bytes
コンパイル時間 1,328 ms
コンパイル使用メモリ 76,696 KB
実行使用メモリ 202,764 KB
最終ジャッジ日時 2024-05-09 12:17:06
合計ジャッジ時間 10,103 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,288 KB
testcase_01 AC 73 ms
75,544 KB
testcase_02 AC 75 ms
75,692 KB
testcase_03 AC 125 ms
89,640 KB
testcase_04 AC 73 ms
75,804 KB
testcase_05 AC 645 ms
198,548 KB
testcase_06 AC 389 ms
143,600 KB
testcase_07 AC 74 ms
75,796 KB
testcase_08 AC 76 ms
75,556 KB
testcase_09 AC 76 ms
75,692 KB
testcase_10 AC 77 ms
76,184 KB
testcase_11 AC 74 ms
75,388 KB
testcase_12 AC 80 ms
77,336 KB
testcase_13 AC 79 ms
76,960 KB
testcase_14 AC 79 ms
77,048 KB
testcase_15 AC 75 ms
75,676 KB
testcase_16 AC 78 ms
76,932 KB
testcase_17 AC 77 ms
76,432 KB
testcase_18 AC 77 ms
76,584 KB
testcase_19 AC 127 ms
89,660 KB
testcase_20 AC 236 ms
116,208 KB
testcase_21 AC 137 ms
93,592 KB
testcase_22 AC 126 ms
91,060 KB
testcase_23 AC 164 ms
101,308 KB
testcase_24 AC 236 ms
116,032 KB
testcase_25 AC 372 ms
141,664 KB
testcase_26 AC 361 ms
141,632 KB
testcase_27 AC 116 ms
86,024 KB
testcase_28 AC 188 ms
104,540 KB
testcase_29 AC 343 ms
140,072 KB
testcase_30 AC 118 ms
88,540 KB
testcase_31 AC 302 ms
127,988 KB
testcase_32 AC 372 ms
140,936 KB
testcase_33 AC 678 ms
202,632 KB
testcase_34 AC 672 ms
202,764 KB
testcase_35 AC 615 ms
194,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_table(n):
  L = [True for _ in xrange(n + 1)]
  i = 2
  while i * i <= n:
    if L[i]:
      j = i + i
      while j <= n:
        L[j] = False
        j += i
    i += 1

  table = [i for i in xrange(n + 1) if L[i] and i >= 2]
  return table

N, L = map(int, raw_input().split())
ans = 0
for p in prime_table(L):
    a = L-(N-1)*p + 1
    if a <= 0:
        break
    ans += a
print ans
0