結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー yuki2006yuki2006
提出日時 2016-08-06 00:07:16
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 191 ms / 1,000 ms
コード長 328 bytes
コンパイル時間 842 ms
コンパイル使用メモリ 76,936 KB
実行使用メモリ 116,428 KB
最終ジャッジ日時 2024-12-15 22:30:35
合計ジャッジ時間 5,076 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
75,148 KB
testcase_01 AC 72 ms
75,404 KB
testcase_02 AC 72 ms
74,912 KB
testcase_03 AC 80 ms
77,992 KB
testcase_04 AC 68 ms
75,436 KB
testcase_05 AC 68 ms
75,180 KB
testcase_06 AC 73 ms
75,424 KB
testcase_07 AC 71 ms
75,640 KB
testcase_08 AC 69 ms
75,540 KB
testcase_09 AC 69 ms
75,436 KB
testcase_10 AC 70 ms
74,916 KB
testcase_11 AC 69 ms
75,176 KB
testcase_12 AC 68 ms
75,388 KB
testcase_13 AC 78 ms
75,020 KB
testcase_14 AC 74 ms
76,428 KB
testcase_15 AC 69 ms
75,548 KB
testcase_16 AC 67 ms
75,132 KB
testcase_17 AC 75 ms
75,384 KB
testcase_18 AC 72 ms
74,904 KB
testcase_19 AC 89 ms
80,900 KB
testcase_20 AC 106 ms
89,192 KB
testcase_21 AC 75 ms
75,080 KB
testcase_22 AC 71 ms
75,312 KB
testcase_23 AC 71 ms
75,328 KB
testcase_24 AC 74 ms
75,576 KB
testcase_25 AC 126 ms
96,508 KB
testcase_26 AC 70 ms
75,324 KB
testcase_27 AC 75 ms
75,324 KB
testcase_28 AC 73 ms
75,044 KB
testcase_29 AC 75 ms
75,284 KB
testcase_30 AC 73 ms
75,176 KB
testcase_31 AC 70 ms
75,452 KB
testcase_32 AC 96 ms
87,104 KB
testcase_33 AC 188 ms
116,048 KB
testcase_34 AC 191 ms
116,428 KB
testcase_35 AC 123 ms
94,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

right = L / (N - 1)

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

print ans
0