結果

問題 No.407 鴨等素数間隔列の数え上げ
ユーザー pluto77pluto77
提出日時 2016-10-24 11:21:11
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 208 ms / 1,000 ms
コード長 425 bytes
コンパイル時間 1,560 ms
コンパイル使用メモリ 76,416 KB
実行使用メモリ 125,184 KB
最終ジャッジ日時 2024-05-09 12:39:24
合計ジャッジ時間 6,380 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
75,520 KB
testcase_01 AC 92 ms
75,264 KB
testcase_02 AC 92 ms
75,648 KB
testcase_03 AC 113 ms
77,952 KB
testcase_04 AC 89 ms
75,520 KB
testcase_05 AC 89 ms
75,392 KB
testcase_06 AC 90 ms
75,776 KB
testcase_07 AC 90 ms
75,648 KB
testcase_08 AC 90 ms
75,648 KB
testcase_09 AC 91 ms
75,520 KB
testcase_10 AC 91 ms
75,392 KB
testcase_11 AC 89 ms
75,392 KB
testcase_12 AC 90 ms
75,520 KB
testcase_13 AC 90 ms
75,648 KB
testcase_14 AC 90 ms
75,776 KB
testcase_15 AC 91 ms
75,264 KB
testcase_16 AC 90 ms
75,648 KB
testcase_17 AC 91 ms
75,264 KB
testcase_18 AC 89 ms
75,392 KB
testcase_19 AC 110 ms
81,792 KB
testcase_20 AC 121 ms
91,136 KB
testcase_21 AC 88 ms
75,392 KB
testcase_22 AC 89 ms
75,392 KB
testcase_23 AC 89 ms
75,520 KB
testcase_24 AC 89 ms
75,776 KB
testcase_25 AC 142 ms
100,608 KB
testcase_26 AC 90 ms
75,392 KB
testcase_27 AC 89 ms
75,392 KB
testcase_28 AC 90 ms
75,776 KB
testcase_29 AC 88 ms
75,392 KB
testcase_30 AC 91 ms
75,520 KB
testcase_31 AC 89 ms
75,776 KB
testcase_32 AC 117 ms
89,088 KB
testcase_33 AC 208 ms
125,184 KB
testcase_34 AC 201 ms
125,184 KB
testcase_35 AC 137 ms
100,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_407
import math

def primelist(n):
 if n==2: return [2]
 elif n<2: return []
 s=range(3,n+1,2)
 mroot = n ** 0.5
 half=(n+1)/2-1
 i=0
 m=3
 while m <= mroot:
  if s[i]:
   j=(m*m-3)/2
   s[j]=0
   while j<half:
	s[j]=0
	j+=m
  i=i+1
  m=2*i+3
 return [2]+[x for x in s if x]

n,l=map(int,raw_input().split())
plist=primelist(l/(n-1))
cnt=0
for p in plist:
 if l-(n-1)*p+1>0:
  cnt+=l-(n-1)*p+1
 else:
  break
print cnt
0