結果

問題 No.90 品物の並び替え
ユーザー zinnnia123zinnnia123
提出日時 2019-09-08 01:21:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 360 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 139,180 KB
最終ジャッジ日時 2024-06-27 14:49:32
合計ジャッジ時間 8,924 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 534 ms
82,144 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 96 ms
76,416 KB
testcase_04 AC 117 ms
76,416 KB
testcase_05 AC 606 ms
82,304 KB
testcase_06 AC 429 ms
82,688 KB
testcase_07 AC 60 ms
63,488 KB
testcase_08 AC 41 ms
51,968 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