結果

問題 No.12 限定された素数
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-03-01 20:36:57
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,500 ms / 5,000 ms
コード長 206 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 27,936 KB
最終ジャッジ日時 2024-06-24 00:39:10
合計ジャッジ時間 32,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,124 ms
27,904 KB
testcase_01 AC 1,160 ms
27,896 KB
testcase_02 AC 1,114 ms
27,776 KB
testcase_03 AC 1,320 ms
27,792 KB
testcase_04 AC 1,127 ms
27,904 KB
testcase_05 AC 1,158 ms
27,932 KB
testcase_06 AC 1,239 ms
27,796 KB
testcase_07 AC 1,234 ms
27,888 KB
testcase_08 AC 1,157 ms
27,772 KB
testcase_09 AC 1,153 ms
27,776 KB
testcase_10 AC 1,128 ms
27,844 KB
testcase_11 AC 1,251 ms
27,768 KB
testcase_12 AC 1,230 ms
27,896 KB
testcase_13 AC 1,211 ms
27,908 KB
testcase_14 AC 1,168 ms
27,900 KB
testcase_15 AC 1,218 ms
27,792 KB
testcase_16 AC 1,500 ms
27,764 KB
testcase_17 AC 1,109 ms
27,756 KB
testcase_18 AC 1,108 ms
27,768 KB
testcase_19 AC 1,108 ms
27,768 KB
testcase_20 AC 1,118 ms
27,928 KB
testcase_21 AC 1,139 ms
27,764 KB
testcase_22 AC 1,106 ms
27,764 KB
testcase_23 AC 1,121 ms
27,892 KB
testcase_24 AC 1,118 ms
27,908 KB
testcase_25 AC 1,184 ms
27,936 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
  )while(y/=10)>0
}
p z-2
0