結果

問題 No.1360 [Zelkova 4th Tune] 協和音
ユーザー yuruhiyayuruhiya
提出日時 2021-01-23 15:40:27
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 274 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-06-09 20:39:09
合計ジャッジ時間 47,080 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,416 KB
testcase_01 AC 75 ms
12,288 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 AC 76 ms
12,288 KB
testcase_04 AC 75 ms
12,416 KB
testcase_05 AC 75 ms
12,416 KB
testcase_06 AC 74 ms
12,288 KB
testcase_07 AC 73 ms
12,416 KB
testcase_08 AC 74 ms
12,160 KB
testcase_09 AC 74 ms
12,160 KB
testcase_10 AC 73 ms
12,416 KB
testcase_11 AC 75 ms
12,288 KB
testcase_12 AC 74 ms
12,288 KB
testcase_13 AC 73 ms
12,160 KB
testcase_14 AC 74 ms
12,416 KB
testcase_15 AC 75 ms
12,288 KB
testcase_16 AC 73 ms
12,160 KB
testcase_17 AC 78 ms
12,160 KB
testcase_18 AC 74 ms
12,288 KB
testcase_19 AC 79 ms
12,160 KB
testcase_20 AC 77 ms
12,160 KB
testcase_21 AC 75 ms
12,160 KB
testcase_22 AC 81 ms
12,416 KB
testcase_23 AC 348 ms
12,288 KB
testcase_24 AC 653 ms
12,544 KB
testcase_25 TLE -
testcase_26 AC 103 ms
12,544 KB
testcase_27 AC 86 ms
12,416 KB
testcase_28 TLE -
testcase_29 AC 198 ms
12,416 KB
testcase_30 AC 341 ms
12,416 KB
testcase_31 AC 346 ms
12,288 KB
testcase_32 AC 132 ms
12,288 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 73 ms
12,160 KB
testcase_44 TLE -
testcase_45 AC 75 ms
12,160 KB
testcase_46 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
a = gets.split.map(&:to_i)
b = (1..n).map { gets.split.map(&:to_i) }
f = ->(i) { (0...n).select { i[_1] == 1 } }
g = ->(i) { x = f[i]; x.sum { a[_1] } + x.combination(2).sum { b[_1][_2] } }
ans = (1...1 << n).max_by(&g)
puts g[ans], f[ans].map{ _1 + 1 } * ' '
0