結果

問題 No.90 品物の並び替え
ユーザー zinnnia123zinnnia123
提出日時 2019-09-07 23:32:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 360 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-06-27 13:27:47
合計ジャッジ時間 9,218 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
78,592 KB
testcase_01 AC 755 ms
17,152 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 68 ms
11,392 KB
testcase_04 AC 100 ms
11,264 KB
testcase_05 AC 865 ms
17,152 KB
testcase_06 AC 591 ms
17,024 KB
testcase_07 AC 35 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

N, M = map(int, input().split())
score = [list(map(int, input().split())) for _ in range(M)]

A = list(itertools.permutations(list(range(N))))
B = [0]*len(A)

for i in range(M):
    K = score[i][0]
    L = score[i][1]
    T = score[i][2]
    for j in range(len(A)):
       if A[j].index(K) > A[j].index(L):
           B[j] += T

print(max(B))
0