結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー flippergoflippergo
提出日時 2024-12-19 09:03:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 527 ms / 1,000 ms
コード長 301 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 127,284 KB
最終ジャッジ日時 2024-12-19 09:03:17
合計ジャッジ時間 4,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,880 KB
testcase_01 AC 38 ms
53,072 KB
testcase_02 AC 36 ms
53,152 KB
testcase_03 AC 53 ms
63,284 KB
testcase_04 AC 38 ms
52,420 KB
testcase_05 AC 40 ms
53,572 KB
testcase_06 AC 38 ms
52,332 KB
testcase_07 AC 37 ms
53,016 KB
testcase_08 AC 38 ms
53,044 KB
testcase_09 AC 38 ms
53,960 KB
testcase_10 AC 39 ms
52,920 KB
testcase_11 AC 39 ms
53,748 KB
testcase_12 AC 36 ms
52,148 KB
testcase_13 AC 38 ms
52,424 KB
testcase_14 AC 43 ms
58,740 KB
testcase_15 AC 37 ms
52,068 KB
testcase_16 AC 38 ms
52,304 KB
testcase_17 AC 38 ms
53,504 KB
testcase_18 AC 38 ms
52,064 KB
testcase_19 AC 80 ms
68,988 KB
testcase_20 AC 133 ms
81,796 KB
testcase_21 AC 42 ms
52,536 KB
testcase_22 AC 41 ms
53,008 KB
testcase_23 AC 41 ms
52,848 KB
testcase_24 AC 40 ms
53,260 KB
testcase_25 AC 234 ms
94,128 KB
testcase_26 AC 40 ms
52,248 KB
testcase_27 AC 39 ms
53,216 KB
testcase_28 AC 39 ms
53,616 KB
testcase_29 AC 37 ms
52,880 KB
testcase_30 AC 38 ms
52,296 KB
testcase_31 AC 37 ms
53,428 KB
testcase_32 AC 111 ms
78,680 KB
testcase_33 AC 527 ms
127,284 KB
testcase_34 AC 477 ms
126,532 KB
testcase_35 AC 183 ms
92,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,L = map(int,input().split())
INFTY = L//(N-1)
P = list(range(INFTY+1))
for i in range(2,INFTY+1):
    if i*i>INFTY:break
    for j in range(i*i,INFTY+1,i):
        P[j] = P[i]
Q = []
for i in range(2,INFTY+1):
    if P[i]==i:
        Q.append(i)
ans = 0
for d in Q:
    ans += L+1-d*(N-1)
print(ans)
0