結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー yumechiyumechi
提出日時 2016-08-26 00:16:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 1,698 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 59,904 KB
最終ジャッジ日時 2024-11-08 04:10:03
合計ジャッジ時間 3,445 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 WA -
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 51 ms
59,776 KB
testcase_06 AC 50 ms
59,392 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 WA -
testcase_10 AC 42 ms
52,352 KB
testcase_11 AC 42 ms
51,968 KB
testcase_12 AC 46 ms
56,832 KB
testcase_13 AC 42 ms
51,968 KB
testcase_14 WA -
testcase_15 AC 42 ms
51,968 KB
testcase_16 AC 42 ms
52,096 KB
testcase_17 AC 42 ms
51,840 KB
testcase_18 AC 42 ms
51,584 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 48 ms
58,112 KB
testcase_22 AC 47 ms
57,344 KB
testcase_23 AC 50 ms
58,240 KB
testcase_24 AC 51 ms
58,624 KB
testcase_25 WA -
testcase_26 AC 51 ms
59,264 KB
testcase_27 AC 47 ms
57,984 KB
testcase_28 AC 49 ms
58,240 KB
testcase_29 AC 51 ms
59,008 KB
testcase_30 AC 47 ms
57,728 KB
testcase_31 AC 51 ms
59,008 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

def solve():
    n, l = map(int, input().split())
    ans = 0
    primes = ()
    for i in range(2, int(sqrt(l)) + 1):
        for j in primes:
            if i % j == 0:
                break
        else:
            primes = primes + (i,)

    for prime in primes:
        if (l + 1) < (n - 1) * prime:
            break
        ans += (l + 1) - (n - 1) * prime
    print(ans)

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