結果
問題 | No.90 品物の並び替え |
ユーザー | けむけむ |
提出日時 | 2021-07-27 23:54:04 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,296 ms / 5,000 ms |
コード長 | 985 bytes |
コンパイル時間 | 228 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 175,452 KB |
最終ジャッジ日時 | 2024-07-23 21:50:29 |
合計ジャッジ時間 | 2,850 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
51,968 KB |
testcase_01 | AC | 172 ms
84,728 KB |
testcase_02 | AC | 40 ms
52,224 KB |
testcase_03 | AC | 58 ms
65,536 KB |
testcase_04 | AC | 61 ms
65,408 KB |
testcase_05 | AC | 157 ms
85,248 KB |
testcase_06 | AC | 133 ms
85,276 KB |
testcase_07 | AC | 49 ms
61,440 KB |
testcase_08 | AC | 40 ms
51,968 KB |
testcase_09 | AC | 1,296 ms
175,452 KB |
ソースコード
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(li1) + 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(M): 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()