結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー nanaenanae
提出日時 2017-02-23 05:39:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 1,000 ms
コード長 849 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 125,440 KB
最終ジャッジ日時 2024-06-10 02:45:44
合計ジャッジ時間 3,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 48 ms
60,928 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 37 ms
52,480 KB
testcase_06 AC 37 ms
52,608 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 37 ms
52,340 KB
testcase_11 AC 41 ms
52,480 KB
testcase_12 AC 36 ms
51,968 KB
testcase_13 AC 36 ms
52,736 KB
testcase_14 AC 40 ms
57,856 KB
testcase_15 AC 36 ms
52,480 KB
testcase_16 AC 36 ms
52,480 KB
testcase_17 AC 37 ms
52,608 KB
testcase_18 AC 35 ms
52,444 KB
testcase_19 AC 60 ms
66,048 KB
testcase_20 AC 98 ms
79,740 KB
testcase_21 AC 37 ms
52,096 KB
testcase_22 AC 36 ms
52,096 KB
testcase_23 AC 37 ms
52,608 KB
testcase_24 AC 37 ms
52,352 KB
testcase_25 AC 140 ms
92,672 KB
testcase_26 AC 36 ms
52,480 KB
testcase_27 AC 38 ms
52,480 KB
testcase_28 AC 37 ms
52,480 KB
testcase_29 AC 36 ms
52,608 KB
testcase_30 AC 36 ms
52,352 KB
testcase_31 AC 36 ms
51,968 KB
testcase_32 AC 88 ms
76,800 KB
testcase_33 AC 269 ms
125,440 KB
testcase_34 AC 262 ms
125,056 KB
testcase_35 AC 127 ms
90,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import sqrt

def solve():
    N, L = map(int, input().split())
    limit = L // (N - 1) + 1
    primes = make_primes(limit)
    # debug(primes, locals())

    ans = 0

    for p in primes:
        if L - (N - 1) * p + 1 <= 0:
            break
        ans += L - (N - 1) * p + 1

    print(ans)

def make_primes(limit):
    primes = [True] * (limit + 1)
    primes[0], primes[1] = False, False

    for p in range(2, int(sqrt(limit)) + 1):
        if not primes[p]:
            continue
        for k in range(p*p, limit + 1, p):
            primes[k] = False

    return [p for p in range(limit + 1) if primes[p]]

def debug(x, table):
    for name, val in table.items():
        if x is val:
            print('DEBUG:{} -> {}'.format(name, val), file=sys.stderr)
            return None

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