結果

問題 No.90 品物の並び替え
ユーザー るこーそーるこーそー
提出日時 2024-09-24 15:59:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 76,216 KB
最終ジャッジ日時 2024-09-24 16:00:01
合計ジャッジ時間 1,510 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,056 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

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-1):
        tmp+=items[P[i]][P[i+1]]
    
    ans=max(ans,tmp)

print(ans)
0