結果

問題 No.90 品物の並び替え
ユーザー dangodango
提出日時 2023-06-15 21:07:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 614 ms / 5,000 ms
コード長 215 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 99,664 KB
最終ジャッジ日時 2024-06-23 19:03:27
合計ジャッジ時間 1,968 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,000 KB
testcase_01 AC 110 ms
77,892 KB
testcase_02 AC 36 ms
52,976 KB
testcase_03 AC 68 ms
75,052 KB
testcase_04 AC 69 ms
76,092 KB
testcase_05 AC 114 ms
77,576 KB
testcase_06 AC 100 ms
77,656 KB
testcase_07 AC 47 ms
61,632 KB
testcase_08 AC 37 ms
52,680 KB
testcase_09 AC 614 ms
99,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
N, M = map(int,input().split())
S = [list(map(int,input().split())) for _ in range(M)]
print(max([sum([C if T[A] < T[B] else 0 for A, B, C in S]) for T in permutations(range(N))]))
0