結果
問題 | No.90 品物の並び替え |
ユーザー | しらっ亭 |
提出日時 | 2015-09-11 02:24:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 566 bytes |
コンパイル時間 | 167 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 76,160 KB |
最終ジャッジ日時 | 2024-07-19 05:14:15 |
合計ジャッジ時間 | 1,732 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
51,840 KB |
testcase_01 | WA | - |
testcase_02 | AC | 41 ms
52,096 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
from itertools import permutations def solve(): N, M = map(int, input().split()) ss = [[0 for _ in range(N)] for _ in range(N)] for i in range(M): i1, i2, s = map(int, input().split()) ss[i1][i2] = s ma = 0 for l in permutations(range(N)): s = 0 for i in range(N): for j in range(i): if l[i] > l[j]: s += ss[l[i]][l[j]] else: s += ss[l[j]][l[i]] ma = max(ma, s) print(ma) if __name__ == '__main__': solve()