結果

問題 No.90 品物の並び替え
ユーザー ronpooronpoo
提出日時 2023-08-22 15:40:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 382 ms / 5,000 ms
コード長 374 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 76,148 KB
最終ジャッジ日時 2024-05-09 21:23:58
合計ジャッジ時間 1,718 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 78 ms
75,904 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 49 ms
63,104 KB
testcase_04 AC 50 ms
63,104 KB
testcase_05 AC 82 ms
75,864 KB
testcase_06 AC 73 ms
76,148 KB
testcase_07 AC 50 ms
62,976 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 382 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

N, M = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(M)]

ans = 0
for p in permutations(range(N)):
    score = 0
    d = [0] * N
    for i, v in enumerate(p):
        d[v] = i
    for i in range(M):
        x, y, z = A[i]
        if d[x] < d[y]:
            score += z
    ans = max(ans, score)

print(ans)
0