結果

問題 No.90 品物の並び替え
ユーザー けむけむけむけむ
提出日時 2021-07-27 23:43:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,000 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-07-23 21:42:46
合計ジャッジ時間 8,905 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 514 ms
19,072 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 59 ms
11,904 KB
testcase_04 AC 77 ms
11,904 KB
testcase_05 AC 587 ms
19,072 KB
testcase_06 AC 417 ms
19,072 KB
testcase_07 AC 35 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def narabe(N):
    if N == 2:
        result = [[0, 1], [1, 0]]
        return result
    result = []
    bef_f = narabe(N - 1)
    for i in range(len(bef_f)):
        li1 = bef_f[i]
        for j in range(len(bef_f[i]) + 1):
            li2 = [] + li1
            li2.insert(j, N - 1)
            result.append(li2)
    return result

def shinamono(N, M, scores):
    lists = narabe(N)
    score_list = []
    for i in range(len(lists)):
        score = 0
        li = lists[i]
        for j in range(len(scores)):
            a = li.index(scores[j][0])
            b = li.index(scores[j][1])
            if a < b:
                score += scores[j][2]
        score_list.append(score)
    result = max(score_list)
    return result

def main():
    N, M = map(int, input().split())
    scores = [[0, 0, 0] for i in range(M)]
    for j in range(M):
        scores[j][0], scores[j][1], scores[j][2] = map(int, input().split())
    print(shinamono(N, M, scores))

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