結果

問題 No.12 限定された素数
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-03-01 20:37:56
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,205 ms / 5,000 ms
コード長 211 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,976 KB
最終ジャッジ日時 2024-05-03 09:13:21
合計ジャッジ時間 29,800 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,011 ms
27,652 KB
testcase_01 AC 1,047 ms
27,976 KB
testcase_02 AC 1,035 ms
27,804 KB
testcase_03 AC 1,205 ms
27,892 KB
testcase_04 AC 1,031 ms
27,924 KB
testcase_05 AC 1,057 ms
27,768 KB
testcase_06 AC 1,137 ms
27,768 KB
testcase_07 AC 1,143 ms
27,720 KB
testcase_08 AC 1,040 ms
27,860 KB
testcase_09 AC 1,048 ms
27,800 KB
testcase_10 AC 1,025 ms
27,652 KB
testcase_11 AC 1,152 ms
27,652 KB
testcase_12 AC 1,151 ms
27,904 KB
testcase_13 AC 1,095 ms
27,780 KB
testcase_14 AC 1,035 ms
27,908 KB
testcase_15 AC 1,094 ms
27,676 KB
testcase_16 AC 1,112 ms
27,784 KB
testcase_17 AC 1,000 ms
27,804 KB
testcase_18 AC 1,024 ms
27,768 KB
testcase_19 AC 1,002 ms
27,764 KB
testcase_20 AC 1,036 ms
27,784 KB
testcase_21 AC 1,029 ms
27,844 KB
testcase_22 AC 1,025 ms
27,892 KB
testcase_23 AC 1,021 ms
27,900 KB
testcase_24 AC 1,002 ms
27,756 KB
testcase_25 AC 1,055 ms
27,924 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require'prime'
m=5000001
gets
b=c=l=0
gets.split.map{|a|b|=1<<a.ord-48}
z=1
Prime.each(m+10){|x|
  c<b||z=[z,[x,m].min-l].max
  y=x
  (
    c|=1<<y%10
    (c=0;l=x;break) if(b|c)>b
    y/=10
  )while y>0
}
p z-2
0