結果

問題 No.12 限定された素数
ユーザー らっしー(raccy)らっしー(raccy)
提出日時 2016-02-20 09:05:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 3,494 ms / 5,000 ms
コード長 509 bytes
コンパイル時間 36 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 28,128 KB
最終ジャッジ日時 2024-05-03 09:48:44
合計ジャッジ時間 85,962 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,992 ms
27,920 KB
testcase_01 AC 3,024 ms
28,028 KB
testcase_02 AC 3,007 ms
27,104 KB
testcase_03 AC 3,478 ms
27,224 KB
testcase_04 AC 3,033 ms
27,952 KB
testcase_05 AC 3,122 ms
27,864 KB
testcase_06 AC 3,304 ms
27,904 KB
testcase_07 AC 3,250 ms
28,004 KB
testcase_08 AC 3,101 ms
27,996 KB
testcase_09 AC 3,025 ms
28,128 KB
testcase_10 AC 3,119 ms
27,164 KB
testcase_11 AC 3,494 ms
27,784 KB
testcase_12 AC 3,284 ms
27,872 KB
testcase_13 AC 3,155 ms
28,008 KB
testcase_14 AC 3,109 ms
27,844 KB
testcase_15 AC 3,163 ms
27,796 KB
testcase_16 AC 3,412 ms
28,016 KB
testcase_17 AC 3,041 ms
27,932 KB
testcase_18 AC 3,375 ms
27,884 KB
testcase_19 AC 3,166 ms
27,856 KB
testcase_20 AC 3,099 ms
27,920 KB
testcase_21 AC 3,127 ms
28,008 KB
testcase_22 AC 3,051 ms
27,824 KB
testcase_23 AC 3,045 ms
27,820 KB
testcase_24 AC 3,070 ms
27,836 KB
testcase_25 AC 3,074 ms
28,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require "prime"
require "set"
prime_max = 5000000

gets
set = gets.split.map(&:to_i).to_set

ok_set = Set.new
start = 1
now_set = Set.new

Prime.each(prime_max) do |prime|
  num_set = prime.to_s.each_char.map(&:to_i).uniq.to_set
  if set.superset?(num_set)
    now_set += num_set
  else
    if set == now_set
      ok_set << prime - 1 - start
    end
    start = prime + 1
    now_set.clear
  end
end
if set == now_set
  ok_set << prime_max - start
end
if ok_set.empty?
  puts(-1)
else
  puts(ok_set.max)
end
0