結果
問題 | No.90 品物の並び替え |
ユーザー | kutsutama |
提出日時 | 2018-12-24 02:10:58 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 4,599 ms / 5,000 ms |
コード長 | 423 bytes |
コンパイル時間 | 138 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-25 10:54:37 |
合計ジャッジ時間 | 6,938 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 437 ms
10,880 KB |
testcase_02 | AC | 29 ms
10,880 KB |
testcase_03 | AC | 69 ms
10,752 KB |
testcase_04 | AC | 69 ms
10,752 KB |
testcase_05 | AC | 443 ms
10,752 KB |
testcase_06 | AC | 438 ms
10,752 KB |
testcase_07 | AC | 35 ms
10,624 KB |
testcase_08 | AC | 30 ms
10,752 KB |
testcase_09 | AC | 4,599 ms
10,752 KB |
ソースコード
import itertools n, m = [int(x) for x in input().split()] table = [] for i in range(n): table += [[0] * n] for i in range(m): it1, it2, sc = [int(x) for x in input().split()] table[it1][it2] = sc res = 0 for v in itertools.permutations(range(n)): score = 0 for i in range(len(v) - 1): for j in range(i + 1, len(v)): score += table[v[i]][v[j]] res = max(score, res) print(res)