結果

問題 No.90 品物の並び替え
ユーザー colognecologne
提出日時 2022-01-27 15:52:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 836 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 76,092 KB
最終ジャッジ日時 2024-06-07 11:57:32
合計ジャッジ時間 2,352 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,960 KB
testcase_01 AC 120 ms
75,988 KB
testcase_02 AC 37 ms
53,836 KB
testcase_03 AC 71 ms
75,964 KB
testcase_04 AC 71 ms
76,048 KB
testcase_05 AC 125 ms
76,092 KB
testcase_06 AC 106 ms
75,812 KB
testcase_07 AC 51 ms
64,272 KB
testcase_08 AC 39 ms
53,536 KB
testcase_09 AC 836 ms
75,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import itertools


def input(): return sys.stdin.readline().rstrip()


def main():
    N, M = map(int, input().split())
    iis = [list(map(int, input().split())) for i in range(M)]
    ans = 0
    for arr in itertools.permutations(range(N), N):
        ans = max(ans, sum(score if arr[item1] < arr[item2] else 0
                           for item1, item2, score in iis))

    print(ans)


if __name__ == '__main__':
    main()
0