結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,584 KB
testcase_01 AC 118 ms
75,776 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 72 ms
73,856 KB
testcase_04 AC 74 ms
75,392 KB
testcase_05 AC 112 ms
75,776 KB
testcase_06 AC 101 ms
75,520 KB
testcase_07 AC 49 ms
61,056 KB
testcase_08 AC 35 ms
51,840 KB
testcase_09 AC 538 ms
75,776 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