結果
問題 | No.90 品物の並び替え |
ユーザー | shokayamori |
提出日時 | 2020-12-07 18:55:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 580 bytes |
コンパイル時間 | 165 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,888 KB |
最終ジャッジ日時 | 2024-09-17 14:00:53 |
合計ジャッジ時間 | 10,001 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 956 ms
12,416 KB |
testcase_02 | AC | 31 ms
10,624 KB |
testcase_03 | AC | 80 ms
10,624 KB |
testcase_04 | AC | 123 ms
10,496 KB |
testcase_05 | AC | 1,127 ms
12,288 KB |
testcase_06 | AC | 763 ms
12,160 KB |
testcase_07 | AC | 38 ms
10,624 KB |
testcase_08 | AC | 29 ms
10,752 KB |
testcase_09 | TLE | - |
ソースコード
import itertools N, M = map(int, input().split()) score_table = [] for i in range(M): score_table.append(list(map(int, input().split()))) perms = itertools.permutations(list(range(N))) total_score_list = [] for perm in perms: total_score = 0 for [back, forth, score] in score_table: for elem in perm: if elem == forth: break elif elem == back: total_score += score break else: continue total_score_list.append(total_score) print(max(total_score_list))