結果

問題 No.774 tatyamと素数大富豪
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-21 12:41:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 756 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 59,136 KB
最終ジャッジ日時 2024-11-17 12:44:07
合計ジャッジ時間 11,590 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 756 ms
59,008 KB
testcase_01 AC 130 ms
18,688 KB
testcase_02 AC 674 ms
58,112 KB
testcase_03 AC 139 ms
19,456 KB
testcase_04 AC 131 ms
18,688 KB
testcase_05 AC 135 ms
18,816 KB
testcase_06 AC 131 ms
18,688 KB
testcase_07 AC 132 ms
18,560 KB
testcase_08 AC 130 ms
18,432 KB
testcase_09 AC 711 ms
59,136 KB
testcase_10 AC 680 ms
58,240 KB
testcase_11 AC 679 ms
57,984 KB
testcase_12 AC 701 ms
52,480 KB
testcase_13 AC 703 ms
52,864 KB
testcase_14 AC 185 ms
22,016 KB
testcase_15 AC 681 ms
57,984 KB
testcase_16 AC 679 ms
58,240 KB
testcase_17 AC 624 ms
45,184 KB
testcase_18 AC 687 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