結果

問題 No.774 tatyamと素数大富豪
ユーザー maimai
提出日時 2018-12-22 00:13:47
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-09-25 09:47:40
合計ジャッジ時間 4,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,288 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 457 ms
13,568 KB
testcase_03 AC 94 ms
12,288 KB
testcase_04 WA -
testcase_05 AC 94 ms
12,288 KB
testcase_06 AC 96 ms
12,288 KB
testcase_07 AC 95 ms
12,288 KB
testcase_08 AC 96 ms
12,288 KB
testcase_09 AC 490 ms
13,696 KB
testcase_10 AC 180 ms
13,568 KB
testcase_11 AC 98 ms
12,416 KB
testcase_12 WA -
testcase_13 AC 94 ms
12,288 KB
testcase_14 AC 138 ms
12,800 KB
testcase_15 AC 94 ms
12,416 KB
testcase_16 AC 463 ms
13,568 KB
testcase_17 WA -
testcase_18 AC 95 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:18: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:3: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

require 'prime'

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

h = {}

a.sort.reverse.permutation do |perm|
    i = (perm*"").to_i
    next if h[i]
    h[i] = true
    if i.prime?
        p i
        exit
    end
end

p -1
0