結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー yumechiyumechi
提出日時 2016-08-26 00:28:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 545 ms / 1,000 ms
コード長 522 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 149,504 KB
最終ジャッジ日時 2024-11-08 04:13:12
合計ジャッジ時間 10,367 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
135,168 KB
testcase_01 AC 172 ms
135,296 KB
testcase_02 AC 172 ms
135,296 KB
testcase_03 AC 196 ms
137,088 KB
testcase_04 AC 173 ms
135,040 KB
testcase_05 AC 501 ms
137,216 KB
testcase_06 AC 341 ms
136,576 KB
testcase_07 AC 173 ms
135,296 KB
testcase_08 AC 173 ms
135,424 KB
testcase_09 AC 173 ms
135,296 KB
testcase_10 AC 175 ms
135,808 KB
testcase_11 AC 174 ms
135,552 KB
testcase_12 AC 175 ms
135,936 KB
testcase_13 AC 174 ms
135,808 KB
testcase_14 AC 175 ms
135,808 KB
testcase_15 AC 173 ms
135,424 KB
testcase_16 AC 174 ms
135,936 KB
testcase_17 AC 175 ms
136,832 KB
testcase_18 AC 173 ms
135,424 KB
testcase_19 AC 194 ms
138,112 KB
testcase_20 AC 269 ms
140,928 KB
testcase_21 AC 201 ms
136,448 KB
testcase_22 AC 197 ms
135,680 KB
testcase_23 AC 217 ms
136,448 KB
testcase_24 AC 256 ms
136,448 KB
testcase_25 AC 348 ms
143,104 KB
testcase_26 AC 329 ms
136,832 KB
testcase_27 AC 186 ms
135,936 KB
testcase_28 AC 226 ms
136,576 KB
testcase_29 AC 326 ms
136,576 KB
testcase_30 AC 188 ms
135,680 KB
testcase_31 AC 294 ms
136,320 KB
testcase_32 AC 340 ms
140,672 KB
testcase_33 AC 545 ms
149,504 KB
testcase_34 AC 545 ms
149,376 KB
testcase_35 AC 485 ms
143,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

def solve():
    n, l = map(int, input().split())
    ans = 0
    primes = [True for _ in range(10 ** 7 + 1)]
    primes[0], primes[1] = False, False
    for i in range(2, int(sqrt(l)) + 1):
        if primes[i]:
            for j in range(2, l // i - 1):
                primes[i * j] = False

    for i in range(2, l):
        if primes[i]:
            t = (l + 1) - (n - 1) * i
            if t <= 0:
                break
            ans += t
    print(ans)

if __name__=="__main__":
    solve()
0