結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-25 16:16:32
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 368 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 155,096 KB
最終ジャッジ日時 2024-09-26 10:55:41
合計ジャッジ時間 10,729 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
56,004 KB
testcase_01 AC 50 ms
56,368 KB
testcase_02 AC 48 ms
56,676 KB
testcase_03 AC 96 ms
76,032 KB
testcase_04 AC 48 ms
55,608 KB
testcase_05 AC 906 ms
151,020 KB
testcase_06 AC 530 ms
117,388 KB
testcase_07 AC 55 ms
56,296 KB
testcase_08 AC 54 ms
55,732 KB
testcase_09 AC 54 ms
55,900 KB
testcase_10 AC 58 ms
61,472 KB
testcase_11 AC 55 ms
56,228 KB
testcase_12 AC 67 ms
64,024 KB
testcase_13 AC 63 ms
64,556 KB
testcase_14 AC 67 ms
65,328 KB
testcase_15 AC 60 ms
61,520 KB
testcase_16 AC 63 ms
64,024 KB
testcase_17 AC 63 ms
62,712 KB
testcase_18 AC 61 ms
62,752 KB
testcase_19 AC 112 ms
75,368 KB
testcase_20 AC 264 ms
96,164 KB
testcase_21 AC 130 ms
78,476 KB
testcase_22 AC 111 ms
76,620 KB
testcase_23 AC 165 ms
84,164 KB
testcase_24 AC 236 ms
96,404 KB
testcase_25 AC 422 ms
115,232 KB
testcase_26 AC 442 ms
115,752 KB
testcase_27 AC 95 ms
71,624 KB
testcase_28 AC 184 ms
87,948 KB
testcase_29 AC 476 ms
114,696 KB
testcase_30 AC 102 ms
74,668 KB
testcase_31 AC 345 ms
105,304 KB
testcase_32 AC 481 ms
114,584 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 897 ms
147,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N,L = map(int,input().split())

ans = 0

sieve = [False]*(L+1)
sieve[1] = 1
for i in range(2,L+1):
    if sieve[i]:
        continue
    ans += max(0,L - (N-1)*i + 1)
    for j in range(i,L+1,i):
        sieve[j] = True
print(ans)
0