結果

問題 No.90 品物の並び替え
ユーザー pajannatpajannat
提出日時 2021-04-12 22:12:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,109 ms / 5,000 ms
コード長 1,022 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 130,584 KB
最終ジャッジ日時 2024-06-28 17:45:58
合計ジャッジ時間 6,190 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,728 KB
testcase_01 AC 595 ms
81,792 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 56 ms
70,400 KB
testcase_04 AC 68 ms
71,552 KB
testcase_05 AC 345 ms
82,304 KB
testcase_06 AC 239 ms
82,248 KB
testcase_07 AC 47 ms
62,592 KB
testcase_08 AC 34 ms
51,840 KB
testcase_09 AC 4,109 ms
130,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    from sys import stdin

    N, M = map(int, stdin.readline().rstrip().split())

    score_list = []
    for i in range(M):
        score_list_tmp = [int(i) for i in stdin.readline().rstrip().split()]
        score_list.append(score_list_tmp)
    
    import itertools
    # 0からN-1までのリスト
    lis = [x for x in range(N)] 
    # 0~N-1の品物の順列の全パターンをリストに格納。
    permutations_lis = list(itertools.permutations(lis))

    # 品物の順列とスコア表を比較
    max_score = 0
    for permutations in permutations_lis:
        sum = 0
        # 数値列のi番目とj番目をスコア表と比較
        for i in range(len(permutations)):
            for j in range(i+1,len(permutations)):
                for k in score_list:
                    if permutations[i]==k[0] and permutations[j]==k[1]:
                        sum += k[2]
        if sum > max_score:
            max_score = sum

    print(max_score)

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