結果

問題 No.774 tatyamと素数大富豪
ユーザー maimai
提出日時 2018-12-22 00:04:06
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 158 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-09-25 09:46:32
合計ジャッジ時間 11,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,646 ms
12,672 KB
testcase_01 AC 99 ms
12,416 KB
testcase_02 TLE -
testcase_03 AC 106 ms
12,416 KB
testcase_04 AC 103 ms
12,416 KB
testcase_05 AC 103 ms
12,416 KB
testcase_06 AC 100 ms
12,416 KB
testcase_07 AC 98 ms
12,416 KB
testcase_08 AC 99 ms
12,288 KB
testcase_09 AC 1,376 ms
13,440 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 1,437 ms
12,672 KB
testcase_13 AC 1,057 ms
12,928 KB
testcase_14 AC 168 ms
12,544 KB
testcase_15 TLE -
testcase_16 AC 1,578 ms
13,440 KB
testcase_17 TLE -
testcase_18 AC 1,979 ms
13,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

require 'prime'

n = gets.to_i
a = gets.chomp.split

best = -1
a.permutation do |perm|
    i = (perm*"").to_i
    best = [best, i].max if i.prime?
end

p best
0