結果

問題 No.90 品物の並び替え
ユーザー _kyou_kyou
提出日時 2024-08-12 23:52:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 563 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 74,908 KB
最終ジャッジ日時 2024-08-12 23:52:21
合計ジャッジ時間 12,757 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 1,648 ms
17,152 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 108 ms
11,392 KB
testcase_04 AC 197 ms
11,392 KB
testcase_05 AC 1,906 ms
17,152 KB
testcase_06 AC 1,259 ms
17,024 KB
testcase_07 AC 42 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

N, M = map(int, input().split())
all_pattern = list(itertools.permutations(range(N))) # 順列
result = [0] * len(all_pattern)

for _ in range(M):
    item1, item2, score = map(int, input().split())
    for i, pattern in enumerate(all_pattern):
        sts = False
        for item in pattern:
            if item == item2 and not sts:
                break
            elif item == item1 and not sts:
                sts = True
            elif item == item2 and sts:
                result[i] += score
                break

print(max(result))
0