結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,289 ms
28,008 KB
testcase_01 AC 1,355 ms
27,736 KB
testcase_02 AC 1,271 ms
27,972 KB
testcase_03 AC 1,499 ms
28,052 KB
testcase_04 AC 1,289 ms
27,880 KB
testcase_05 AC 1,368 ms
28,040 KB
testcase_06 AC 1,349 ms
28,056 KB
testcase_07 AC 1,413 ms
28,088 KB
testcase_08 AC 1,337 ms
28,084 KB
testcase_09 AC 1,294 ms
27,880 KB
testcase_10 AC 1,381 ms
28,124 KB
testcase_11 AC 1,464 ms
28,060 KB
testcase_12 AC 1,413 ms
27,960 KB
testcase_13 AC 1,351 ms
28,124 KB
testcase_14 AC 1,350 ms
27,804 KB
testcase_15 AC 1,357 ms
27,956 KB
testcase_16 AC 1,448 ms
28,204 KB
testcase_17 AC 1,285 ms
28,008 KB
testcase_18 AC 1,279 ms
27,904 KB
testcase_19 AC 1,285 ms
27,796 KB
testcase_20 AC 1,301 ms
27,976 KB
testcase_21 AC 1,376 ms
27,888 KB
testcase_22 AC 1,290 ms
27,992 KB
testcase_23 AC 1,291 ms
27,828 KB
testcase_24 AC 1,278 ms
28,008 KB
testcase_25 AC 1,375 ms
28,040 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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