結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー yuki2006yuki2006
提出日時 2016-08-05 23:55:09
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 352 ms / 1,000 ms
コード長 286 bytes
コンパイル時間 809 ms
コンパイル使用メモリ 76,556 KB
実行使用メモリ 116,732 KB
最終ジャッジ日時 2024-12-15 22:25:47
合計ジャッジ時間 5,676 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,316 KB
testcase_01 AC 75 ms
75,052 KB
testcase_02 AC 75 ms
75,420 KB
testcase_03 AC 90 ms
77,984 KB
testcase_04 AC 74 ms
75,300 KB
testcase_05 AC 75 ms
75,272 KB
testcase_06 AC 75 ms
75,164 KB
testcase_07 AC 77 ms
75,180 KB
testcase_08 AC 76 ms
75,160 KB
testcase_09 AC 76 ms
75,288 KB
testcase_10 AC 75 ms
75,432 KB
testcase_11 AC 74 ms
75,400 KB
testcase_12 AC 75 ms
75,144 KB
testcase_13 AC 75 ms
75,296 KB
testcase_14 AC 77 ms
76,472 KB
testcase_15 AC 76 ms
75,416 KB
testcase_16 AC 74 ms
75,532 KB
testcase_17 AC 75 ms
75,020 KB
testcase_18 AC 76 ms
75,412 KB
testcase_19 AC 105 ms
81,124 KB
testcase_20 AC 157 ms
89,252 KB
testcase_21 AC 76 ms
75,404 KB
testcase_22 AC 74 ms
75,416 KB
testcase_23 AC 76 ms
75,568 KB
testcase_24 AC 76 ms
75,420 KB
testcase_25 AC 196 ms
96,768 KB
testcase_26 AC 77 ms
75,060 KB
testcase_27 AC 76 ms
75,256 KB
testcase_28 AC 76 ms
75,652 KB
testcase_29 AC 75 ms
75,156 KB
testcase_30 AC 75 ms
75,556 KB
testcase_31 AC 75 ms
75,432 KB
testcase_32 AC 136 ms
86,456 KB
testcase_33 AC 346 ms
116,204 KB
testcase_34 AC 352 ms
116,732 KB
testcase_35 AC 181 ms
95,148 KB
権限があれば一括ダウンロードができます

ソースコード

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