結果

問題 No.12 限定された素数
ユーザー letrangerjpletrangerjp
提出日時 2017-05-15 00:46:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,190 ms / 5,000 ms
コード長 572 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 28,056 KB
最終ジャッジ日時 2024-11-24 09:41:00
合計ジャッジ時間 56,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,041 ms
27,860 KB
testcase_01 AC 2,023 ms
27,776 KB
testcase_02 AC 2,021 ms
27,904 KB
testcase_03 AC 85 ms
12,160 KB
testcase_04 AC 2,044 ms
27,780 KB
testcase_05 AC 2,182 ms
28,056 KB
testcase_06 AC 2,190 ms
27,780 KB
testcase_07 AC 2,091 ms
27,904 KB
testcase_08 AC 2,079 ms
27,772 KB
testcase_09 AC 2,103 ms
27,652 KB
testcase_10 AC 2,036 ms
27,908 KB
testcase_11 AC 2,026 ms
27,748 KB
testcase_12 AC 2,014 ms
27,908 KB
testcase_13 AC 2,093 ms
27,912 KB
testcase_14 AC 2,019 ms
27,748 KB
testcase_15 AC 2,035 ms
27,904 KB
testcase_16 AC 2,004 ms
27,636 KB
testcase_17 AC 2,003 ms
27,632 KB
testcase_18 AC 2,115 ms
27,744 KB
testcase_19 AC 1,997 ms
27,876 KB
testcase_20 AC 2,028 ms
27,908 KB
testcase_21 AC 2,041 ms
27,748 KB
testcase_22 AC 2,052 ms
27,788 KB
testcase_23 AC 2,037 ms
27,780 KB
testcase_24 AC 2,022 ms
27,656 KB
testcase_25 AC 2,032 ms
27,872 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
  last_mask = Prime.each(PRIME_MAX).inject(0){|curr_mask, pr|
    pr_mask = a2m(pr.to_s.chars.map(&:to_i))

    if ((curr_mask | pr_mask) & ~mask) != 0
      max = [max, pr - start - 1].max if curr_mask == mask
      start = pr + 1
      0
    else
      curr_mask | pr_mask
    end
  }
  max = [max, PRIME_MAX - start].max if last_mask == mask
  max
end

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

p N == 10 ? PRIME_MAX-1 : f(A)
0