結果

問題 No.12 限定された素数
ユーザー gigurururugigurururu
提出日時 2014-11-27 20:23:59
言語 Ruby
(3.4.1)
結果
AC  
実行時間 1,818 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 73,344 KB
最終ジャッジ日時 2024-11-24 07:36:27
合計ジャッジ時間 45,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,497 ms
73,216 KB
testcase_01 AC 1,615 ms
73,216 KB
testcase_02 AC 1,531 ms
73,344 KB
testcase_03 AC 1,665 ms
73,216 KB
testcase_04 AC 1,526 ms
73,216 KB
testcase_05 AC 1,675 ms
73,216 KB
testcase_06 AC 1,719 ms
73,216 KB
testcase_07 AC 1,689 ms
73,088 KB
testcase_08 AC 1,658 ms
73,088 KB
testcase_09 AC 1,596 ms
73,088 KB
testcase_10 AC 1,665 ms
73,344 KB
testcase_11 AC 1,738 ms
73,088 KB
testcase_12 AC 1,696 ms
73,216 KB
testcase_13 AC 1,633 ms
73,088 KB
testcase_14 AC 1,643 ms
73,088 KB
testcase_15 AC 1,674 ms
73,344 KB
testcase_16 AC 1,818 ms
73,344 KB
testcase_17 AC 1,495 ms
73,216 KB
testcase_18 AC 1,521 ms
73,216 KB
testcase_19 AC 1,505 ms
73,216 KB
testcase_20 AC 1,564 ms
73,344 KB
testcase_21 AC 1,618 ms
73,216 KB
testcase_22 AC 1,482 ms
73,088 KB
testcase_23 AC 1,484 ms
73,344 KB
testcase_24 AC 1,475 ms
73,088 KB
testcase_25 AC 1,663 ms
73,344 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def prime(max)
m=max
s=[1]*x=(m-3)/2
(0..(m**0.5-3)/2).each{|i|s[i]&&(k=i+i+3;j=k*(i+1)+i;(s[j]=nil;j+=k)until j>x)}
[2]+(0...x).map{|i|s[i]&&i+i+3}.compact
end

gets
a=gets.split

max=5000000
start=1
rest=a
ans=-1
prime(max).each{|i|
  l=i.to_s.chars.to_a
  if (l-a)[0]
    ans=i-1-start if rest==[] && ans<i-1-start
    start=i+1
    rest=a
  else
    rest-=l
  end
}
ans=max-start if rest==[] && ans<max-start
p ans
0