結果

問題 No.90 品物の並び替え
ユーザー vwxyzvwxyz
提出日時 2022-10-18 11:32:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 453 ms / 5,000 ms
コード長 318 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 75,048 KB
最終ジャッジ日時 2024-06-28 20:24:17
合計ジャッジ時間 1,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 89 ms
64,128 KB
testcase_02 AC 40 ms
52,152 KB
testcase_03 AC 46 ms
59,924 KB
testcase_04 AC 48 ms
61,512 KB
testcase_05 AC 78 ms
65,060 KB
testcase_06 AC 67 ms
65,120 KB
testcase_07 AC 45 ms
60,376 KB
testcase_08 AC 39 ms
53,284 KB
testcase_09 AC 453 ms
75,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import sys
readline=sys.stdin.readline

N,M=map(int,readline().split())
score=[tuple(map(int,readline().split())) for m in range(M)]
ans=0
for tpl in itertools.permutations([i for i in range(N)]):
    S=0
    for i,j,s in score:
        if tpl[i]<tpl[j]:
            S+=s
    ans=max(ans,S)
print(ans)
0