結果
問題 | No.90 品物の並び替え |
ユーザー | shi-mo |
提出日時 | 2016-03-30 12:26:11 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 1,687 ms / 5,000 ms |
コード長 | 425 bytes |
コンパイル時間 | 341 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 13,312 KB |
最終ジャッジ日時 | 2024-10-02 03:15:55 |
合計ジャッジ時間 | 4,332 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
12,032 KB |
testcase_01 | AC | 251 ms
12,160 KB |
testcase_02 | AC | 78 ms
12,032 KB |
testcase_03 | AC | 93 ms
12,160 KB |
testcase_04 | AC | 92 ms
12,416 KB |
testcase_05 | AC | 224 ms
12,160 KB |
testcase_06 | AC | 222 ms
12,288 KB |
testcase_07 | AC | 75 ms
12,032 KB |
testcase_08 | AC | 72 ms
12,032 KB |
testcase_09 | AC | 1,687 ms
13,312 KB |
コンパイルメッセージ
Syntax OK
ソースコード
n, m = gets.split.map(&:to_i) score_table = Array.new(n){ Array.new(n, 0) } m.times do i, j, s = gets.split.map(&:to_i) score_table[i][j] = s end def score(perm, score_table) s = 0 perm.size.times do |j| j.times do |i| s += score_table[perm[i]][perm[j]] end end s end max_score = 0 (0..(n-1)).to_a.permutation do |perm| max_score = [ max_score, score(perm, score_table) ].max end puts max_score