結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー hiro1729hiro1729
提出日時 2024-09-09 19:57:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 458 ms / 1,000 ms
コード長 1,405 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 195,604 KB
最終ジャッジ日時 2024-09-09 19:57:42
合計ジャッジ時間 17,780 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 446 ms
195,208 KB
testcase_01 AC 425 ms
195,120 KB
testcase_02 AC 419 ms
195,120 KB
testcase_03 AC 416 ms
195,604 KB
testcase_04 AC 415 ms
195,144 KB
testcase_05 AC 458 ms
195,312 KB
testcase_06 AC 412 ms
195,220 KB
testcase_07 AC 416 ms
195,212 KB
testcase_08 AC 440 ms
195,004 KB
testcase_09 AC 419 ms
195,412 KB
testcase_10 AC 418 ms
194,940 KB
testcase_11 AC 442 ms
195,132 KB
testcase_12 AC 416 ms
195,136 KB
testcase_13 AC 417 ms
195,552 KB
testcase_14 AC 444 ms
195,316 KB
testcase_15 AC 422 ms
195,500 KB
testcase_16 AC 418 ms
195,000 KB
testcase_17 AC 433 ms
194,932 KB
testcase_18 AC 416 ms
195,004 KB
testcase_19 AC 445 ms
195,592 KB
testcase_20 AC 418 ms
195,064 KB
testcase_21 AC 415 ms
195,216 KB
testcase_22 AC 442 ms
195,488 KB
testcase_23 AC 416 ms
195,220 KB
testcase_24 AC 423 ms
195,004 KB
testcase_25 AC 443 ms
195,284 KB
testcase_26 AC 415 ms
195,480 KB
testcase_27 AC 418 ms
195,456 KB
testcase_28 AC 430 ms
195,072 KB
testcase_29 AC 417 ms
195,316 KB
testcase_30 AC 419 ms
195,288 KB
testcase_31 AC 429 ms
195,268 KB
testcase_32 AC 421 ms
195,496 KB
testcase_33 AC 433 ms
195,060 KB
testcase_34 AC 420 ms
195,432 KB
testcase_35 AC 417 ms
195,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Created by hiro1729 on 2024-09-08
# Copyright (c) 2024 RTWP

from typing import List
from math import *

# O(sqrt(N))
def isprime_slow(N: int):
	if N == 1:
		return False
	if N == 2:
		return True
	for i in range(2, isqrt(N) + 1):
		if N % i == 0:
			return False
	return True

# O(sqrt(N))
def divisors(N: int):
	divisors = []
	for i in range(1, isqrt(N) + 1):
		if N % i == 0:
			divisors.append(i)
			if i * i != N:
				divisors.append(N // i)
	divisors.sort()
	return divisors

# O(N)
def linear_sieve(N: int):
	lpf = [-1] * (N + 1)
	prime_list = []
	for d in range(2, N + 1):
		if lpf[d] == -1:
			lpf[d] = d
			prime_list.append(d)
		for p in prime_list:
			if p * d > N or p > lpf[d]:
				break
			lpf[p * d] = p
	return (lpf, prime_list)

# please call linear_sieve(N) before calling this
# O(log(N))
def prime_factorize_sieve(N: int, lpf: List[int]):
	prime_factors = []
	while N > 1:
		prime_factors.append(lpf[N])
		N //= lpf[N]
	return prime_factors

# O(sqrt(N))
def prime_factorize(N: int):
	M = isqrt(N)
	prime_factors = []
	for i in range(2, M + 1):
		if i > M:
			break
		if N % i == 0:
			while N % i == 0:
				prime_factors.append(i)
				N //= i
			M = isqrt(N)
	if N > 1:
		prime_factors.append(N)
	return prime_factors

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

_, P = linear_sieve(10 ** 7)

ans = 0

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

print(ans)
0