結果

問題 No.12 限定された素数
ユーザー code-devocode-devo
提出日時 2016-02-07 01:11:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,094 ms / 5,000 ms
コード長 611 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-05-03 09:42:56
合計ジャッジ時間 52,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,794 ms
27,860 KB
testcase_01 AC 1,939 ms
27,628 KB
testcase_02 AC 1,823 ms
27,860 KB
testcase_03 AC 1,899 ms
27,780 KB
testcase_04 AC 1,791 ms
27,904 KB
testcase_05 AC 1,990 ms
27,860 KB
testcase_06 AC 2,007 ms
27,844 KB
testcase_07 AC 2,010 ms
27,884 KB
testcase_08 AC 1,992 ms
27,732 KB
testcase_09 AC 1,897 ms
27,760 KB
testcase_10 AC 2,020 ms
27,888 KB
testcase_11 AC 1,990 ms
27,780 KB
testcase_12 AC 2,001 ms
27,752 KB
testcase_13 AC 1,993 ms
27,780 KB
testcase_14 AC 1,996 ms
27,864 KB
testcase_15 AC 1,989 ms
27,744 KB
testcase_16 AC 2,094 ms
27,888 KB
testcase_17 AC 1,779 ms
27,796 KB
testcase_18 AC 1,757 ms
27,760 KB
testcase_19 AC 1,759 ms
27,892 KB
testcase_20 AC 1,853 ms
27,884 KB
testcase_21 AC 1,989 ms
27,748 KB
testcase_22 AC 1,754 ms
27,660 KB
testcase_23 AC 1,759 ms
27,736 KB
testcase_24 AC 1,780 ms
27,732 KB
testcase_25 AC 2,002 ms
27,844 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

FM = 1
TO = 5_000_000

gets
a = gets.split.map(&:to_s)

k = 1
cs = a.dup
max_len = -1
Prime.each(TO) do |pn|
  chars = pn.to_s.chars
  if (chars - a).size == 0 then
    #与えられた数字のみが使われている
    cs -= chars
  else
    #与えられた数字以外が使われている
    if cs.size <= 0 then
      len = pn - 1 - k #現在の範囲の上限は、素数-1
      max_len = len if len > max_len
    end
    k = pn + 1 #次の範囲の下限は、素数+1
    cs = a.dup
  end
end

if cs.size <= 0 then
  len = TO - k
  max_len = len if len > max_len
end

puts max_len
0