結果

問題 No.90 品物の並び替え
ユーザー _kyou_kyou
提出日時 2024-08-13 01:37:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 646 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 65,464 KB
最終ジャッジ日時 2024-08-13 01:37:50
合計ジャッジ時間 13,588 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import itertools

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

for i in range(M):
    item1[i], item2[i], score[i] = map(int, input().split())

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

print(max(result))
0