結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー TawaraTawara
提出日時 2016-08-06 00:00:40
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 358 bytes
コンパイル時間 714 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 56,448 KB
最終ジャッジ日時 2024-11-07 04:53:23
合計ジャッジ時間 6,436 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,400 KB
testcase_01 AC 12 ms
6,272 KB
testcase_02 AC 12 ms
6,144 KB
testcase_03 AC 33 ms
7,680 KB
testcase_04 AC 12 ms
6,400 KB
testcase_05 AC 12 ms
6,272 KB
testcase_06 AC 12 ms
6,272 KB
testcase_07 AC 12 ms
6,144 KB
testcase_08 AC 11 ms
6,272 KB
testcase_09 AC 12 ms
6,400 KB
testcase_10 AC 11 ms
6,400 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 12 ms
6,144 KB
testcase_14 AC 12 ms
6,272 KB
testcase_15 RE -
testcase_16 AC 12 ms
6,272 KB
testcase_17 AC 12 ms
6,400 KB
testcase_18 AC 12 ms
6,272 KB
testcase_19 AC 92 ms
11,392 KB
testcase_20 AC 301 ms
21,632 KB
testcase_21 AC 12 ms
6,400 KB
testcase_22 AC 11 ms
6,400 KB
testcase_23 AC 12 ms
6,400 KB
testcase_24 AC 11 ms
6,272 KB
testcase_25 AC 558 ms
31,616 KB
testcase_26 AC 11 ms
6,400 KB
testcase_27 RE -
testcase_28 AC 11 ms
6,144 KB
testcase_29 AC 11 ms
6,272 KB
testcase_30 AC 11 ms
6,400 KB
testcase_31 AC 11 ms
6,144 KB
testcase_32 AC 251 ms
18,944 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 509 ms
29,056 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 [i for i in xrange(n+1) if check[i]]
N,L = map(int,raw_input().split())
if L < 5:
	print 0
	quit()
M = 0
for p in sieve(L/(N-1)):
	M += L+1 - p*(N-1)
print M
0