結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,347 ms
73,088 KB
testcase_01 AC 1,468 ms
73,088 KB
testcase_02 AC 1,368 ms
73,216 KB
testcase_03 AC 1,424 ms
73,088 KB
testcase_04 AC 1,369 ms
73,216 KB
testcase_05 AC 1,489 ms
73,344 KB
testcase_06 AC 1,517 ms
73,216 KB
testcase_07 AC 1,483 ms
73,088 KB
testcase_08 AC 1,521 ms
73,088 KB
testcase_09 AC 1,511 ms
73,216 KB
testcase_10 AC 1,518 ms
73,216 KB
testcase_11 AC 1,557 ms
73,216 KB
testcase_12 AC 1,512 ms
73,216 KB
testcase_13 AC 1,474 ms
73,088 KB
testcase_14 AC 1,457 ms
73,216 KB
testcase_15 AC 1,497 ms
73,344 KB
testcase_16 AC 1,602 ms
73,088 KB
testcase_17 AC 1,307 ms
73,216 KB
testcase_18 AC 1,314 ms
73,344 KB
testcase_19 AC 1,366 ms
73,344 KB
testcase_20 AC 1,430 ms
73,344 KB
testcase_21 AC 1,508 ms
73,088 KB
testcase_22 AC 1,339 ms
73,344 KB
testcase_23 AC 1,329 ms
73,088 KB
testcase_24 AC 1,342 ms
73,216 KB
testcase_25 AC 1,570 ms
73,216 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.dup
ans=-1
prime(max).each{|i|
  l=i.to_s.chars
  if (l-a)[0]
    ans=i-1-start if rest==[] && ans<i-1-start
    start=i+1
    rest=a.dup
  else
    rest-=l
  end
}
ans=max-start if rest==[] && ans<max-start
p ans
0