結果

問題 No.12 限定された素数
ユーザー letrangerjpletrangerjp
提出日時 2017-05-15 00:30:37
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 626 bytes
コンパイル時間 37 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 47,248 KB
最終ジャッジ日時 2024-09-16 05:55:44
合計ジャッジ時間 86,455 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,145 ms
47,088 KB
testcase_01 AC 3,129 ms
46,808 KB
testcase_02 AC 3,159 ms
47,060 KB
testcase_03 WA -
testcase_04 AC 3,164 ms
47,116 KB
testcase_05 AC 3,145 ms
46,832 KB
testcase_06 AC 3,132 ms
46,356 KB
testcase_07 AC 3,136 ms
46,492 KB
testcase_08 AC 3,189 ms
47,152 KB
testcase_09 AC 3,112 ms
46,868 KB
testcase_10 AC 3,133 ms
46,868 KB
testcase_11 AC 3,129 ms
47,024 KB
testcase_12 AC 3,135 ms
47,248 KB
testcase_13 AC 3,127 ms
45,700 KB
testcase_14 AC 3,146 ms
45,724 KB
testcase_15 AC 3,159 ms
47,088 KB
testcase_16 AC 3,147 ms
46,992 KB
testcase_17 AC 3,163 ms
46,864 KB
testcase_18 AC 3,232 ms
47,000 KB
testcase_19 AC 3,107 ms
46,964 KB
testcase_20 AC 3,151 ms
46,936 KB
testcase_21 AC 3,114 ms
46,864 KB
testcase_22 AC 3,135 ms
46,912 KB
testcase_23 AC 3,333 ms
46,740 KB
testcase_24 AC 3,185 ms
47,060 KB
testcase_25 AC 3,163 ms
46,996 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require "prime"

def a2m(a)
  a.inject(0){|r, n| r | 1<<n}
end

def f(a)
  mask = a2m(a)

  max = -1
  start = 1
  curr_mask = 0
  primes = Prime.each(PRIME_MAX).map{|pr|
    [pr, a2m(pr.to_s.chars.map(&:to_i))]
  }
  primes.size.times{|i|
    pr, pr_mask = primes[i]

    curr_mask |= pr_mask
    if (curr_mask & ~mask) != 0
      start = pr + 1
      curr_mask = 0
    elsif curr_mask == mask
      last = i == primes.size-1 ? PRIME_MAX : primes[i+1][0]
      max = [max, last - start - 1].max
    end
  }
  max
end

PRIME_MAX = 5_000_000
N = gets.to_i
A = gets.split.take(N).map(&:to_i)

puts PRIME_MAX-1 if N == 10
p f(A)
0