結果

問題 No.90 品物の並び替え
ユーザー 👑 KazunKazun
提出日時 2020-10-14 16:10:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 305 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 82,236 KB
最終ジャッジ日時 2024-07-20 19:09:51
合計ジャッジ時間 9,153 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 502 ms
75,220 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 77 ms
70,272 KB
testcase_04 AC 104 ms
75,384 KB
testcase_05 AC 571 ms
75,392 KB
testcase_06 AC 399 ms
75,136 KB
testcase_07 AC 50 ms
62,336 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

N,M=map(int,input().split())
X=[0]*M
for i in range(M):
    x,y,a=map(int,input().split())
    X[i]=(x,y,a)

Max=-1
for U in permutations(range(N)):
    T=0
    for (x,y,a) in X:
        if U.index(x)<U.index(y):
            T+=a

    if T>Max:
        Max=T
print(Max)
0