結果

問題 No.90 品物の並び替え
ユーザー るこーそーるこーそー
提出日時 2024-09-24 16:03:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 5,000 ms
コード長 393 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 76,368 KB
最終ジャッジ日時 2024-09-24 16:03:07
合計ジャッジ時間 1,696 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,548 KB
testcase_01 AC 66 ms
76,032 KB
testcase_02 AC 36 ms
52,448 KB
testcase_03 AC 47 ms
64,140 KB
testcase_04 AC 50 ms
64,080 KB
testcase_05 AC 67 ms
76,368 KB
testcase_06 AC 67 ms
75,892 KB
testcase_07 AC 46 ms
62,792 KB
testcase_08 AC 36 ms
52,760 KB
testcase_09 AC 208 ms
75,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

n,m=map(int,input().split())
items=[[0]*n for _ in range(n)]
for _ in range(m):
    item1,item2,score=map(int,input().split())
    item1,item2=item1-1,item2-1
    items[item1][item2]=score

ans=0
for P in permutations(range(n)):
    tmp=0
    for i in range(n):
        for j in range(i):
            tmp+=items[P[j]][P[i]]

    ans=max(ans,tmp)

print(ans)
0