結果

問題 No.90 品物の並び替え
ユーザー yansi819yansi819
提出日時 2024-05-26 09:46:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 387 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 82,344 KB
最終ジャッジ日時 2024-05-26 09:46:55
合計ジャッジ時間 9,118 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,500 KB
testcase_01 AC 467 ms
75,524 KB
testcase_02 AC 34 ms
52,180 KB
testcase_03 AC 66 ms
72,128 KB
testcase_04 AC 85 ms
75,820 KB
testcase_05 AC 548 ms
75,328 KB
testcase_06 AC 363 ms
75,564 KB
testcase_07 AC 44 ms
62,728 KB
testcase_08 AC 32 ms
53,296 KB
testcase_09 TLE -
権限があれば一括ダウンロードができます

ソースコード

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
    for s in S:
        index1 = v.index(s[0])
        index2 = v.index(s[1])
        if index1 < index2:
            SUM += s[2]
    MAX = max(MAX, SUM)
print(MAX)
0