結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,940 KB
testcase_01 AC 84 ms
75,884 KB
testcase_02 AC 39 ms
53,188 KB
testcase_03 AC 50 ms
63,360 KB
testcase_04 AC 50 ms
65,132 KB
testcase_05 AC 82 ms
75,928 KB
testcase_06 AC 72 ms
76,008 KB
testcase_07 AC 51 ms
64,044 KB
testcase_08 AC 36 ms
53,240 KB
testcase_09 AC 390 ms
75,972 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