結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー tookunn_1213tookunn_1213
提出日時 2016-08-06 00:06:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 1,182 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-11-07 00:07:05
合計ジャッジ時間 22,377 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 536 ms
21,632 KB
testcase_01 AC 538 ms
21,760 KB
testcase_02 AC 538 ms
21,888 KB
testcase_03 AC 552 ms
21,632 KB
testcase_04 AC 553 ms
21,632 KB
testcase_05 AC 543 ms
21,632 KB
testcase_06 AC 545 ms
21,632 KB
testcase_07 AC 551 ms
21,760 KB
testcase_08 AC 565 ms
21,632 KB
testcase_09 AC 551 ms
21,760 KB
testcase_10 AC 552 ms
21,760 KB
testcase_11 AC 559 ms
21,760 KB
testcase_12 AC 558 ms
21,632 KB
testcase_13 AC 561 ms
21,632 KB
testcase_14 AC 560 ms
21,760 KB
testcase_15 AC 555 ms
21,760 KB
testcase_16 AC 556 ms
21,760 KB
testcase_17 AC 548 ms
21,632 KB
testcase_18 AC 552 ms
21,632 KB
testcase_19 AC 561 ms
21,632 KB
testcase_20 WA -
testcase_21 AC 551 ms
21,632 KB
testcase_22 AC 560 ms
21,760 KB
testcase_23 AC 554 ms
21,760 KB
testcase_24 AC 554 ms
21,760 KB
testcase_25 WA -
testcase_26 AC 558 ms
21,632 KB
testcase_27 AC 556 ms
21,760 KB
testcase_28 AC 539 ms
21,632 KB
testcase_29 AC 541 ms
21,632 KB
testcase_30 AC 546 ms
21,632 KB
testcase_31 AC 558 ms
21,632 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,L = map(int,input().split())
def getPrimes():
	isPrime = [True for i in range(1000000 + 1)]
	isPrime[0] = isPrime[1] = False
	primes = []
	for i in range(2,1000000 + 1):
		if not isPrime[i]:
			continue
		j = 2
		while i * j <= 1000000:
			isPrime[i * j] = False
			j += 1
		primes.append(i)
	return primes
primes = getPrimes()
#print(primes)
ans = 0
for p in primes:
	if L < p * (N - 1):
		break
	ans += (L - p * (N - 1)) + 1
print(ans)
0