結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー eitahoeitaho
提出日時 2016-08-07 03:09:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 656 ms / 1,000 ms
コード長 265 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 151,936 KB
最終ジャッジ日時 2024-11-07 04:34:36
合計ジャッジ時間 5,578 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,968 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 73 ms
68,352 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 161 ms
132,096 KB
testcase_06 AC 82 ms
98,944 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 39 ms
52,480 KB
testcase_13 AC 42 ms
57,856 KB
testcase_14 AC 44 ms
59,008 KB
testcase_15 AC 41 ms
51,840 KB
testcase_16 AC 42 ms
57,472 KB
testcase_17 AC 43 ms
57,472 KB
testcase_18 AC 44 ms
57,472 KB
testcase_19 AC 76 ms
69,504 KB
testcase_20 AC 180 ms
87,808 KB
testcase_21 AC 42 ms
62,336 KB
testcase_22 AC 44 ms
60,416 KB
testcase_23 AC 72 ms
72,960 KB
testcase_24 AC 58 ms
81,152 KB
testcase_25 AC 308 ms
106,376 KB
testcase_26 AC 77 ms
96,384 KB
testcase_27 AC 43 ms
57,600 KB
testcase_28 AC 57 ms
74,752 KB
testcase_29 AC 103 ms
95,488 KB
testcase_30 AC 43 ms
58,752 KB
testcase_31 AC 126 ms
88,960 KB
testcase_32 AC 286 ms
102,144 KB
testcase_33 AC 656 ms
151,764 KB
testcase_34 AC 599 ms
151,936 KB
testcase_35 AC 512 ms
137,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, L = map(int, input().split())
prime = [1] * (L + 1)
ans = 0

for p in range(2, L + 1):
    num = L - p * (N - 1) + 1
    if num <= 0:
        break
    if prime[p]:
        ans += num
        for i in range(p + p, L + 1, p):
            prime[i] = 0

print(ans)
0