結果

問題 No.90 品物の並び替え
ユーザー MaboyMaboy
提出日時 2017-04-22 17:29:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 229 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 72,352 KB
最終ジャッジ日時 2024-07-21 16:10:20
合計ジャッジ時間 8,309 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 502 ms
17,152 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 58 ms
11,392 KB
testcase_04 AC 75 ms
11,520 KB
testcase_05 AC 575 ms
17,024 KB
testcase_06 AC 385 ms
17,152 KB
testcase_07 AC 34 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N,M=map(int, input().split())
s=[list(map(int,input().split())) for x in range(M)]
ol=list(itertools.permutations([x for x in range(N)]))
print(max([sum([(a.index(l)<a.index(r))*s for l,r,s in s]) for a in ol]))
0