結果

問題 No.12 限定された素数
ユーザー code-devocode-devo
提出日時 2016-02-07 01:18:07
言語 Ruby
(3.4.1)
結果
AC  
実行時間 2,137 ms / 5,000 ms
コード長 664 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 28,064 KB
最終ジャッジ日時 2024-11-24 08:39:14
合計ジャッジ時間 51,637 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,801 ms
28,064 KB
testcase_01 AC 1,974 ms
27,912 KB
testcase_02 AC 1,852 ms
27,916 KB
testcase_03 AC 95 ms
12,416 KB
testcase_04 AC 1,842 ms
27,748 KB
testcase_05 AC 2,034 ms
27,852 KB
testcase_06 AC 2,043 ms
27,892 KB
testcase_07 AC 2,033 ms
27,776 KB
testcase_08 AC 2,016 ms
28,016 KB
testcase_09 AC 1,935 ms
28,000 KB
testcase_10 AC 2,041 ms
27,992 KB
testcase_11 AC 2,106 ms
27,876 KB
testcase_12 AC 2,036 ms
27,912 KB
testcase_13 AC 2,018 ms
27,972 KB
testcase_14 AC 2,017 ms
27,988 KB
testcase_15 AC 2,014 ms
27,904 KB
testcase_16 AC 2,137 ms
27,920 KB
testcase_17 AC 1,807 ms
28,000 KB
testcase_18 AC 1,802 ms
27,860 KB
testcase_19 AC 1,801 ms
27,920 KB
testcase_20 AC 1,913 ms
27,972 KB
testcase_21 AC 2,007 ms
27,824 KB
testcase_22 AC 1,800 ms
27,916 KB
testcase_23 AC 1,800 ms
27,796 KB
testcase_24 AC 1,802 ms
27,900 KB
testcase_25 AC 2,028 ms
27,880 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