結果

問題 No.90 品物の並び替え
ユーザー 👑 rin204rin204
提出日時 2022-01-20 10:24:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 472 ms / 5,000 ms
コード長 281 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 86,892 KB
実行使用メモリ 76,336 KB
最終ジャッジ日時 2023-08-15 08:36:48
合計ジャッジ時間 2,455 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,328 KB
testcase_01 AC 128 ms
75,920 KB
testcase_02 AC 72 ms
71,232 KB
testcase_03 AC 80 ms
76,060 KB
testcase_04 AC 81 ms
75,844 KB
testcase_05 AC 110 ms
75,784 KB
testcase_06 AC 99 ms
75,812 KB
testcase_07 AC 77 ms
75,900 KB
testcase_08 AC 70 ms
71,156 KB
testcase_09 AC 472 ms
76,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n, m = map(int, input().split())
ijs = [list(map(int, input().split())) for _ in range(m)]
ans = 0
for lst in itertools.permutations(range(n)):
    tot = 0
    for i, j, s in ijs:
        if lst[i] > lst[j]:
            tot += s
    ans = max(ans, tot)
print(ans)
0