結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,422 ms
73,088 KB
testcase_01 AC 1,535 ms
73,088 KB
testcase_02 AC 1,424 ms
73,216 KB
testcase_03 AC 1,628 ms
73,216 KB
testcase_04 AC 1,445 ms
73,088 KB
testcase_05 AC 1,628 ms
73,216 KB
testcase_06 AC 1,596 ms
73,216 KB
testcase_07 AC 1,607 ms
73,216 KB
testcase_08 AC 1,626 ms
73,216 KB
testcase_09 AC 1,481 ms
73,088 KB
testcase_10 AC 1,585 ms
72,960 KB
testcase_11 AC 1,654 ms
73,088 KB
testcase_12 AC 1,634 ms
73,216 KB
testcase_13 AC 1,563 ms
73,216 KB
testcase_14 AC 1,530 ms
73,088 KB
testcase_15 AC 1,605 ms
73,216 KB
testcase_16 AC 1,728 ms
72,960 KB
testcase_17 AC 1,369 ms
73,216 KB
testcase_18 AC 1,352 ms
73,216 KB
testcase_19 AC 1,399 ms
73,088 KB
testcase_20 AC 1,545 ms
73,344 KB
testcase_21 AC 1,542 ms
72,960 KB
testcase_22 AC 1,353 ms
73,088 KB
testcase_23 AC 1,371 ms
73,088 KB
testcase_24 AC 1,354 ms
73,088 KB
testcase_25 AC 1,562 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
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