結果

問題 No.774 tatyamと素数大富豪
ユーザー finefine
提出日時 2018-12-22 19:40:52
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 970 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,304 KB
最終ジャッジ日時 2024-09-25 10:15:11
合計ジャッジ時間 6,614 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

  class Integer
    def prime?
      n = self.abs()
      return true if n == 2
      return false if n == 1 || n & 1 == 0
      d = n-1
      d >>= 1 while d & 1 == 0
      5.times do                               # 20 は上の説明の k に相当
        a = rand(n-2) + 1
        t = d
        y = ModMath.pow(a,t,n)                  # 実装コードは下にある
        while t != n-1 && y != 1 && y != n-1
          y = (y * y) % n
          t <<= 1
        end
        return false if y != n-1 && t & 1 == 0
      end
      return true
    end
  end
  
  module ModMath
    def ModMath.pow(base, power, mod)
      result = 1
      while power > 0
        result = (result * base) % mod if power & 1 == 1
        base = (base * base) % mod
        power >>= 1;
      end
      result
    end
  end

n = gets.to_i
arr = gets.chomp.split

ans = -1
arr.permutation(n) do |a|
    x = a.join.to_i
    if x.prime?
        ans = (x > ans ? x : ans)
    end
end
p ans
0