結果

問題 No.12 限定された素数
ユーザー code-devocode-devo
提出日時 2016-02-07 01:18:07
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,295 ms / 5,000 ms
コード長 664 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 27,892 KB
最終ジャッジ日時 2024-05-03 09:44:10
合計ジャッジ時間 55,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,972 ms
27,720 KB
testcase_01 AC 2,150 ms
27,628 KB
testcase_02 AC 2,001 ms
27,892 KB
testcase_03 AC 111 ms
12,416 KB
testcase_04 AC 1,981 ms
27,656 KB
testcase_05 AC 2,166 ms
27,724 KB
testcase_06 AC 2,191 ms
27,764 KB
testcase_07 AC 2,155 ms
27,780 KB
testcase_08 AC 2,189 ms
27,860 KB
testcase_09 AC 2,183 ms
27,748 KB
testcase_10 AC 2,219 ms
27,892 KB
testcase_11 AC 2,205 ms
27,776 KB
testcase_12 AC 2,151 ms
27,756 KB
testcase_13 AC 2,172 ms
27,692 KB
testcase_14 AC 2,148 ms
27,888 KB
testcase_15 AC 2,162 ms
27,872 KB
testcase_16 AC 2,295 ms
27,792 KB
testcase_17 AC 1,841 ms
27,664 KB
testcase_18 AC 1,849 ms
27,864 KB
testcase_19 AC 1,857 ms
27,668 KB
testcase_20 AC 1,963 ms
27,768 KB
testcase_21 AC 2,089 ms
27,788 KB
testcase_22 AC 1,900 ms
27,860 KB
testcase_23 AC 1,854 ms
27,884 KB
testcase_24 AC 1,892 ms
27,852 KB
testcase_25 AC 2,105 ms
27,732 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

FM = 1
TO = 5_000_000

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

if a.size == 10 then
  puts TO - FM
  exit
end

k = FM
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