結果

問題 No.774 tatyamと素数大富豪
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-21 12:41:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 744 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 59,264 KB
最終ジャッジ日時 2024-04-28 18:08:24
合計ジャッジ時間 10,617 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 744 ms
59,136 KB
testcase_01 AC 131 ms
18,944 KB
testcase_02 AC 666 ms
58,240 KB
testcase_03 AC 137 ms
19,328 KB
testcase_04 AC 130 ms
18,688 KB
testcase_05 AC 132 ms
18,688 KB
testcase_06 AC 128 ms
18,816 KB
testcase_07 AC 131 ms
18,816 KB
testcase_08 AC 127 ms
18,560 KB
testcase_09 AC 704 ms
59,264 KB
testcase_10 AC 671 ms
58,240 KB
testcase_11 AC 668 ms
58,368 KB
testcase_12 AC 696 ms
52,480 KB
testcase_13 AC 694 ms
52,864 KB
testcase_14 AC 182 ms
22,144 KB
testcase_15 AC 678 ms
58,240 KB
testcase_16 AC 667 ms
58,368 KB
testcase_17 AC 622 ms
44,928 KB
testcase_18 AC 665 ms
58,240 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

require 'openssl'

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

ans = a.permutation(a.size)
 .map(&:join)
 .uniq
 .sort_by{|x| x.to_i * -1}
 .find{|x| OpenSSL::BN.new(x).prime?}

puts ans || -1
0