結果

問題 No.90 品物の並び替え
ユーザー togatogatogatoga
提出日時 2015-09-11 08:45:15
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 253 ms / 5,000 ms
コード長 413 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-07-19 05:16:13
合計ジャッジ時間 2,179 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
75,008 KB
testcase_01 AC 105 ms
77,312 KB
testcase_02 AC 79 ms
75,648 KB
testcase_03 AC 91 ms
77,440 KB
testcase_04 AC 87 ms
77,440 KB
testcase_05 AC 102 ms
77,824 KB
testcase_06 AC 104 ms
77,440 KB
testcase_07 AC 91 ms
77,696 KB
testcase_08 AC 79 ms
75,520 KB
testcase_09 AC 253 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N,M = map(int, raw_input().split())
scores = [[0 for i in range(N)] for j in range(N)]
for i in range(M):
    a,b,c = map(int, raw_input().split())
    scores[a][b] = c

base = range(0, N)
ans = 0
for perm in itertools.permutations(base):
    tmp = 0
    for i in range(N):
        for j in range(i + 1, N):
            tmp += scores[perm[i]][perm[j]]
    
    ans = max(ans, tmp)
    
print ans
0