結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 700 ms
59,136 KB
testcase_01 AC 127 ms
19,072 KB
testcase_02 AC 630 ms
58,240 KB
testcase_03 AC 126 ms
19,200 KB
testcase_04 AC 117 ms
18,816 KB
testcase_05 AC 119 ms
18,688 KB
testcase_06 AC 119 ms
18,688 KB
testcase_07 AC 118 ms
18,944 KB
testcase_08 AC 117 ms
18,688 KB
testcase_09 AC 675 ms
59,264 KB
testcase_10 AC 622 ms
58,368 KB
testcase_11 AC 616 ms
58,496 KB
testcase_12 AC 646 ms
52,608 KB
testcase_13 AC 684 ms
52,864 KB
testcase_14 AC 169 ms
21,888 KB
testcase_15 AC 636 ms
58,496 KB
testcase_16 AC 636 ms
58,496 KB
testcase_17 AC 587 ms
45,056 KB
testcase_18 AC 645 ms
58,240 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'openssl'

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

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

puts ans || -1
0