結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
75,416 KB
testcase_01 AC 77 ms
75,540 KB
testcase_02 AC 78 ms
75,292 KB
testcase_03 AC 91 ms
78,388 KB
testcase_04 AC 77 ms
75,044 KB
testcase_05 AC 76 ms
75,416 KB
testcase_06 AC 76 ms
75,292 KB
testcase_07 AC 76 ms
74,908 KB
testcase_08 AC 77 ms
75,532 KB
testcase_09 AC 76 ms
75,548 KB
testcase_10 AC 75 ms
75,544 KB
testcase_11 AC 75 ms
75,144 KB
testcase_12 AC 75 ms
75,176 KB
testcase_13 AC 76 ms
75,432 KB
testcase_14 AC 77 ms
76,044 KB
testcase_15 AC 79 ms
75,552 KB
testcase_16 AC 76 ms
75,428 KB
testcase_17 AC 74 ms
75,176 KB
testcase_18 AC 75 ms
75,528 KB
testcase_19 AC 105 ms
81,544 KB
testcase_20 AC 153 ms
88,956 KB
testcase_21 AC 76 ms
75,196 KB
testcase_22 AC 75 ms
75,276 KB
testcase_23 AC 75 ms
75,552 KB
testcase_24 AC 76 ms
75,432 KB
testcase_25 AC 195 ms
96,492 KB
testcase_26 AC 76 ms
75,408 KB
testcase_27 AC 77 ms
75,428 KB
testcase_28 AC 75 ms
75,280 KB
testcase_29 AC 75 ms
75,500 KB
testcase_30 AC 76 ms
75,024 KB
testcase_31 AC 75 ms
75,012 KB
testcase_32 AC 137 ms
86,716 KB
testcase_33 AC 335 ms
116,588 KB
testcase_34 AC 344 ms
116,188 KB
testcase_35 AC 184 ms
95,048 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
    if i == 2:
        i += 1
    else:
        i += 2

print ans
0