結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー yumechiyumechi
提出日時 2016-08-26 00:30:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 559 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 149,632 KB
最終ジャッジ日時 2024-11-08 04:12:16
合計ジャッジ時間 6,341 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
52,200 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 73 ms
66,688 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 446 ms
133,760 KB
testcase_06 AC 240 ms
99,328 KB
testcase_07 AC 40 ms
52,332 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 43 ms
57,088 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 46 ms
58,240 KB
testcase_13 AC 42 ms
57,984 KB
testcase_14 AC 45 ms
58,496 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 44 ms
57,344 KB
testcase_17 AC 45 ms
58,880 KB
testcase_18 AC 43 ms
57,600 KB
testcase_19 AC 75 ms
68,096 KB
testcase_20 AC 150 ms
86,528 KB
testcase_21 AC 78 ms
68,864 KB
testcase_22 AC 70 ms
66,176 KB
testcase_23 AC 102 ms
73,740 KB
testcase_24 AC 149 ms
82,176 KB
testcase_25 AC 242 ms
104,064 KB
testcase_26 AC 232 ms
97,792 KB
testcase_27 AC 66 ms
63,360 KB
testcase_28 AC 114 ms
75,136 KB
testcase_29 AC 243 ms
96,384 KB
testcase_30 AC 71 ms
64,512 KB
testcase_31 AC 194 ms
89,728 KB
testcase_32 AC 248 ms
100,992 KB
testcase_33 AC 511 ms
149,120 KB
testcase_34 AC 516 ms
149,632 KB
testcase_35 AC 451 ms
135,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

def solve():
    n, l = map(int, input().split())
    ans = 0
    if l <= 5:
        print(0)
        return
    primes = [True for _ in range(l)]
    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