結果

問題 No.90 品物の並び替え
ユーザー mlihua09mlihua09
提出日時 2020-08-23 13:33:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 528 ms / 5,000 ms
コード長 300 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-04-23 17:35:51
合計ジャッジ時間 1,822 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 101 ms
76,160 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 55 ms
73,984 KB
testcase_04 AC 63 ms
75,776 KB
testcase_05 AC 103 ms
75,908 KB
testcase_06 AC 93 ms
76,032 KB
testcase_07 AC 43 ms
61,696 KB
testcase_08 AC 34 ms
51,968 KB
testcase_09 AC 528 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #





N, M = map(int, input().split())

item = list(list(map(int, input().split())) for i in range(M))

ans = 0


from itertools import permutations

for i in permutations(range(N), N):
    
    ans = max(ans, sum([score if i[item1] > i[item2] else 0 for item1, item2, score in item]))
    
print(ans)
0