結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,503 ms
27,868 KB
testcase_01 AC 1,676 ms
27,924 KB
testcase_02 AC 1,535 ms
27,984 KB
testcase_03 AC 2,020 ms
27,988 KB
testcase_04 AC 1,570 ms
27,868 KB
testcase_05 AC 1,721 ms
27,812 KB
testcase_06 AC 1,691 ms
27,852 KB
testcase_07 AC 1,860 ms
27,844 KB
testcase_08 AC 1,624 ms
27,844 KB
testcase_09 AC 1,579 ms
27,704 KB
testcase_10 AC 1,707 ms
27,828 KB
testcase_11 AC 1,932 ms
27,828 KB
testcase_12 AC 1,839 ms
27,864 KB
testcase_13 AC 1,699 ms
27,848 KB
testcase_14 AC 1,661 ms
27,844 KB
testcase_15 AC 1,713 ms
27,688 KB
testcase_16 AC 2,002 ms
27,732 KB
testcase_17 AC 1,504 ms
27,912 KB
testcase_18 AC 1,545 ms
27,704 KB
testcase_19 AC 1,523 ms
27,732 KB
testcase_20 AC 1,508 ms
27,704 KB
testcase_21 AC 1,581 ms
27,844 KB
testcase_22 AC 1,518 ms
27,796 KB
testcase_23 AC 1,513 ms
27,868 KB
testcase_24 AC 1,497 ms
27,936 KB
testcase_25 AC 1,719 ms
27,860 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require'prime'
m=5000001
gets
b=0
gets.split.map{|a|b|=1<<a.ord-48}
c=0
l=0
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.ord-48
    (b|c)>b
  }
}
p z-2
0