結果

問題 No.12 限定された素数
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-03-01 20:31:24
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 28,224 KB
最終ジャッジ日時 2024-06-24 00:38:18
合計ジャッジ時間 48,065 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,555 ms
27,996 KB
testcase_01 AC 1,729 ms
27,972 KB
testcase_02 AC 1,588 ms
27,824 KB
testcase_03 WA -
testcase_04 AC 1,582 ms
28,064 KB
testcase_05 AC 1,732 ms
27,876 KB
testcase_06 AC 1,739 ms
27,972 KB
testcase_07 AC 1,861 ms
27,972 KB
testcase_08 AC 1,652 ms
27,956 KB
testcase_09 AC 1,624 ms
27,812 KB
testcase_10 AC 1,735 ms
27,956 KB
testcase_11 AC 1,951 ms
27,852 KB
testcase_12 AC 1,877 ms
27,936 KB
testcase_13 AC 1,756 ms
27,936 KB
testcase_14 AC 1,737 ms
27,948 KB
testcase_15 AC 1,788 ms
27,936 KB
testcase_16 AC 1,967 ms
28,068 KB
testcase_17 AC 1,541 ms
27,968 KB
testcase_18 AC 1,573 ms
27,828 KB
testcase_19 AC 1,575 ms
27,968 KB
testcase_20 AC 1,547 ms
27,856 KB
testcase_21 AC 1,608 ms
27,968 KB
testcase_22 AC 1,548 ms
28,084 KB
testcase_23 AC 1,562 ms
27,960 KB
testcase_24 AC 1,530 ms
27,984 KB
testcase_25 AC 1,732 ms
27,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require'prime'
gets
b=0
gets.split.map{|a|b|=1<<a.ord-48}
c=0
l=0
z=1
Prime.each(5e6+11){|x|
  c<b||z=[z,[x,5e6].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