結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー TawaraTawara
提出日時 2016-08-05 22:48:09
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 226 ms / 1,000 ms
コード長 408 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 76,208 KB
実行使用メモリ 116,216 KB
最終ジャッジ日時 2024-12-15 20:54:37
合計ジャッジ時間 6,283 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,408 KB
testcase_01 AC 72 ms
75,296 KB
testcase_02 AC 73 ms
75,564 KB
testcase_03 AC 82 ms
77,868 KB
testcase_04 AC 74 ms
75,936 KB
testcase_05 AC 72 ms
75,428 KB
testcase_06 AC 73 ms
75,560 KB
testcase_07 AC 72 ms
75,320 KB
testcase_08 AC 73 ms
75,408 KB
testcase_09 AC 73 ms
75,520 KB
testcase_10 AC 72 ms
75,384 KB
testcase_11 AC 73 ms
75,704 KB
testcase_12 AC 72 ms
75,448 KB
testcase_13 AC 72 ms
75,304 KB
testcase_14 AC 75 ms
76,300 KB
testcase_15 AC 72 ms
75,676 KB
testcase_16 AC 73 ms
75,784 KB
testcase_17 AC 76 ms
75,420 KB
testcase_18 AC 72 ms
75,292 KB
testcase_19 AC 86 ms
80,264 KB
testcase_20 AC 108 ms
88,200 KB
testcase_21 AC 73 ms
75,416 KB
testcase_22 AC 71 ms
75,644 KB
testcase_23 AC 72 ms
75,436 KB
testcase_24 AC 72 ms
75,520 KB
testcase_25 AC 131 ms
96,652 KB
testcase_26 AC 75 ms
75,660 KB
testcase_27 AC 75 ms
75,812 KB
testcase_28 AC 73 ms
75,828 KB
testcase_29 AC 75 ms
75,392 KB
testcase_30 AC 74 ms
75,676 KB
testcase_31 AC 74 ms
75,448 KB
testcase_32 AC 100 ms
86,688 KB
testcase_33 AC 220 ms
115,676 KB
testcase_34 AC 226 ms
116,216 KB
testcase_35 AC 124 ms
94,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def sieve (n):
	check = [1]*(n+1)
	check[0] = check[1] = 0
	for d in xrange(2,int(math.sqrt(n))+1):
		if check[d] == 0: continue
		for comp in xrange(d*2,n+1,d):
			check[comp] = 0
	return check
N,L = map(int,raw_input().split())
if L < 5:
	print 0
	quit()
prime = sieve(L/(N-1)+1)
M = 0
for i in xrange(2,L/(N-1)+1):
	if prime[i] == 0:
		continue
	if i * (N-1) <= L:
		M += L+1 - i*(N-1)
print M
0