結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー yuki2006yuki2006
提出日時 2016-08-05 23:54:48
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 286 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 30,776 KB
最終ジャッジ日時 2024-11-22 11:45:48
合計ジャッジ時間 11,003 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
13,636 KB
testcase_01 AC 12 ms
13,760 KB
testcase_02 AC 11 ms
13,768 KB
testcase_03 AC 93 ms
7,168 KB
testcase_04 AC 11 ms
6,820 KB
testcase_05 AC 11 ms
6,816 KB
testcase_06 AC 10 ms
6,816 KB
testcase_07 AC 11 ms
6,820 KB
testcase_08 AC 11 ms
6,816 KB
testcase_09 AC 11 ms
6,820 KB
testcase_10 AC 11 ms
6,816 KB
testcase_11 AC 10 ms
6,816 KB
testcase_12 AC 11 ms
6,820 KB
testcase_13 AC 11 ms
6,816 KB
testcase_14 AC 11 ms
6,820 KB
testcase_15 AC 11 ms
6,820 KB
testcase_16 AC 11 ms
6,820 KB
testcase_17 AC 11 ms
6,816 KB
testcase_18 AC 11 ms
6,816 KB
testcase_19 AC 316 ms
10,068 KB
testcase_20 AC 990 ms
18,000 KB
testcase_21 AC 10 ms
6,816 KB
testcase_22 AC 11 ms
6,820 KB
testcase_23 AC 10 ms
6,820 KB
testcase_24 AC 11 ms
6,816 KB
testcase_25 TLE -
testcase_26 AC 11 ms
6,820 KB
testcase_27 AC 11 ms
6,824 KB
testcase_28 AC 11 ms
6,816 KB
testcase_29 AC 11 ms
6,816 KB
testcase_30 AC 10 ms
6,816 KB
testcase_31 AC 11 ms
6,820 KB
testcase_32 AC 792 ms
15,592 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, L = map(int, raw_input().split())

right = L / (N - 1)

field = [True] * (right + 1)
i = 2
ans = 0
while i <= right:
    if field[i]:
        k = i * i
        while k <= right:
            field[k] = False
            k += i
        ans += L - i * (N - 1) + 1
    i += 1

print ans
0