結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー nebukuro09nebukuro09
提出日時 2016-10-19 14:15:03
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 397 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 89,728 KB
最終ジャッジ日時 2024-11-22 15:17:56
合計ジャッジ時間 23,515 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
11,264 KB
testcase_01 AC 11 ms
86,784 KB
testcase_02 AC 10 ms
11,264 KB
testcase_03 AC 266 ms
21,504 KB
testcase_04 AC 11 ms
11,264 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 11 ms
6,144 KB
testcase_08 AC 10 ms
6,144 KB
testcase_09 AC 10 ms
6,144 KB
testcase_10 AC 11 ms
6,144 KB
testcase_11 AC 11 ms
6,016 KB
testcase_12 AC 26 ms
6,912 KB
testcase_13 AC 12 ms
6,144 KB
testcase_14 AC 21 ms
6,528 KB
testcase_15 AC 11 ms
6,144 KB
testcase_16 AC 11 ms
6,144 KB
testcase_17 AC 10 ms
6,272 KB
testcase_18 AC 11 ms
6,016 KB
testcase_19 AC 275 ms
16,384 KB
testcase_20 AC 919 ms
36,480 KB
testcase_21 AC 352 ms
19,712 KB
testcase_22 AC 285 ms
17,408 KB
testcase_23 AC 529 ms
25,856 KB
testcase_24 AC 904 ms
36,224 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 191 ms
13,312 KB
testcase_28 AC 601 ms
28,032 KB
testcase_29 TLE -
testcase_30 AC 228 ms
15,232 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

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