結果

問題 No.90 品物の並び替え
ユーザー yansi819yansi819
提出日時 2024-05-26 09:52:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 793 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 75,928 KB
最終ジャッジ日時 2024-05-26 09:52:16
合計ジャッジ時間 2,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,604 KB
testcase_01 AC 106 ms
75,928 KB
testcase_02 AC 34 ms
52,360 KB
testcase_03 AC 46 ms
64,524 KB
testcase_04 AC 47 ms
64,748 KB
testcase_05 AC 111 ms
75,848 KB
testcase_06 AC 103 ms
75,732 KB
testcase_07 AC 43 ms
64,132 KB
testcase_08 AC 32 ms
52,272 KB
testcase_09 AC 793 ms
75,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
N, M = map(int, input().split())
S = []
for _ in range(M):
    s = list(map(int, input().split()))
    S.append(s)
A = [i for i in range(N)]
MAX = 0
for v in permutations(A):
    SUM = 0
    idx = [0] * N
    for a in A:
        idx[a] = v.index(a)
    for s in S:
        index1 = idx[s[0]]
        index2 = idx[s[1]]
        if index1 < index2:
            SUM += s[2]
    MAX = max(MAX, SUM)
print(MAX)
0