結果

問題 No.12 限定された素数
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-03-01 20:42:15
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,077 ms / 5,000 ms
コード長 184 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 28,100 KB
最終ジャッジ日時 2024-05-03 09:20:14
合計ジャッジ時間 46,458 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,513 ms
27,960 KB
testcase_01 AC 1,717 ms
27,976 KB
testcase_02 AC 1,545 ms
27,844 KB
testcase_03 AC 2,077 ms
27,832 KB
testcase_04 AC 1,581 ms
27,988 KB
testcase_05 AC 1,742 ms
27,968 KB
testcase_06 AC 1,714 ms
27,936 KB
testcase_07 AC 1,897 ms
27,828 KB
testcase_08 AC 1,647 ms
27,860 KB
testcase_09 AC 1,605 ms
27,832 KB
testcase_10 AC 1,728 ms
27,864 KB
testcase_11 AC 1,961 ms
27,912 KB
testcase_12 AC 1,874 ms
27,908 KB
testcase_13 AC 1,752 ms
27,908 KB
testcase_14 AC 1,700 ms
27,960 KB
testcase_15 AC 1,744 ms
28,100 KB
testcase_16 AC 1,995 ms
27,828 KB
testcase_17 AC 1,520 ms
27,844 KB
testcase_18 AC 1,551 ms
27,960 KB
testcase_19 AC 1,548 ms
27,912 KB
testcase_20 AC 1,527 ms
27,852 KB
testcase_21 AC 1,662 ms
27,844 KB
testcase_22 AC 1,557 ms
27,960 KB
testcase_23 AC 1,544 ms
27,844 KB
testcase_24 AC 1,517 ms
27,908 KB
testcase_25 AC 1,739 ms
27,844 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_char.any?{|y|c|=1<<y.to_i;b|c>b}}
p z-2
0