結果

問題 No.90 品物の並び替え
ユーザー mottodoramottodora
提出日時 2016-10-31 23:36:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,056 ms / 5,000 ms
コード長 234 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,088 KB
最終ジャッジ日時 2024-05-03 20:33:23
合計ジャッジ時間 3,492 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 169 ms
12,288 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 41 ms
10,752 KB
testcase_04 AC 46 ms
10,880 KB
testcase_05 AC 190 ms
12,288 KB
testcase_06 AC 141 ms
12,288 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 2,056 ms
25,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
N, M = map(int, input().split(' '))
rules = [list(map(int, input().split(' '))) for i in range(M)]
print(max([sum([k if t[i] < t[j] else 0 for i, j, k in rules]) for t in permutations(range(N), N)]))
0