結果

問題 No.774 tatyamと素数大富豪
ユーザー finefine
提出日時 2018-12-22 20:09:31
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 509 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 33,552 KB
最終ジャッジ日時 2024-09-25 10:15:40
合計ジャッジ時間 9,516 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,573 ms
33,552 KB
testcase_01 AC 103 ms
12,416 KB
testcase_02 AC 103 ms
12,416 KB
testcase_03 AC 110 ms
13,056 KB
testcase_04 AC 103 ms
12,416 KB
testcase_05 AC 103 ms
12,288 KB
testcase_06 AC 101 ms
12,544 KB
testcase_07 WA -
testcase_08 AC 101 ms
12,544 KB
testcase_09 AC 102 ms
12,288 KB
testcase_10 AC 452 ms
13,440 KB
testcase_11 AC 452 ms
13,568 KB
testcase_12 AC 967 ms
23,680 KB
testcase_13 AC 808 ms
23,680 KB
testcase_14 AC 102 ms
12,416 KB
testcase_15 AC 459 ms
13,568 KB
testcase_16 AC 449 ms
13,568 KB
testcase_17 AC 447 ms
13,952 KB
testcase_18 AC 454 ms
13,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:16: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:19: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

require 'prime'
require 'set'

def calc(a)
    sum = 0
    a.each do |s|
        sum += s.split('').map(&:to_i).inject(:+)
    end
    return sum
end

n = gets.to_i
arr = gets.chomp.split

if arr.uniq.size == 1
    p -1
    exit
elsif calc(arr) % 3 == 0 && !(n == 1 && arr[0].to_i == 3)
    p -1
    exit
end

ans = -1
s = Set.new()
arr.sort!.reverse!

arr.permutation(n) do |a|
    x = a.join.to_i
    if s.add?(x).nil?
        next
    end
    if x.prime?
        ans = (x > ans ? x : ans)
    end
end
p ans
0