結果

問題 No.12 限定された素数
ユーザー gigurururugigurururu
提出日時 2014-11-27 18:34:12
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,882 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 73,344 KB
最終ジャッジ日時 2024-05-03 08:53:52
合計ジャッジ時間 47,108 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,576 ms
73,216 KB
testcase_01 AC 1,717 ms
73,216 KB
testcase_02 AC 1,639 ms
73,088 KB
testcase_03 AC 1,671 ms
73,088 KB
testcase_04 AC 1,628 ms
73,088 KB
testcase_05 AC 1,760 ms
73,216 KB
testcase_06 AC 1,784 ms
73,216 KB
testcase_07 AC 1,782 ms
73,216 KB
testcase_08 AC 1,766 ms
73,088 KB
testcase_09 AC 1,686 ms
73,088 KB
testcase_10 AC 1,784 ms
73,088 KB
testcase_11 AC 1,789 ms
73,216 KB
testcase_12 AC 1,774 ms
73,088 KB
testcase_13 AC 1,744 ms
73,088 KB
testcase_14 AC 1,737 ms
72,960 KB
testcase_15 AC 1,781 ms
73,344 KB
testcase_16 AC 1,882 ms
72,960 KB
testcase_17 AC 1,589 ms
72,960 KB
testcase_18 AC 1,577 ms
73,088 KB
testcase_19 AC 1,604 ms
73,088 KB
testcase_20 AC 1,691 ms
73,088 KB
testcase_21 AC 1,747 ms
72,960 KB
testcase_22 AC 1,592 ms
73,216 KB
testcase_23 AC 1,583 ms
73,088 KB
testcase_24 AC 1,586 ms
73,088 KB
testcase_25 AC 1,805 ms
73,088 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