結果
問題 | No.90 品物の並び替え |
ユーザー | halship |
提出日時 | 2021-06-04 21:27:37 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 370 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 17,700 KB |
最終ジャッジ日時 | 2024-11-19 12:25:22 |
合計ジャッジ時間 | 8,476 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,880 KB |
testcase_01 | AC | 514 ms
10,624 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 59 ms
10,752 KB |
testcase_04 | AC | 80 ms
10,880 KB |
testcase_05 | AC | 533 ms
10,880 KB |
testcase_06 | AC | 375 ms
10,880 KB |
testcase_07 | AC | 36 ms
10,624 KB |
testcase_08 | AC | 29 ms
10,624 KB |
testcase_09 | TLE | - |
ソースコード
from itertools import permutations n, m = [int(s) for s in input().split()] table = [] for i in range(m): table.append([int(s) for s in input().split()]) max_score = 0 for perm in permutations(range(n), n): score = 0 for i1, i2, sc in table: if perm[i1] < perm[i2]: score += sc max_score = max(max_score, score) print(max_score)