結果
問題 | No.90 品物の並び替え |
ユーザー | なえしら |
提出日時 | 2023-11-22 23:45:40 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 435 ms / 5,000 ms |
コード長 | 304 bytes |
コンパイル時間 | 207 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 75,136 KB |
最終ジャッジ日時 | 2024-09-26 07:43:31 |
合計ジャッジ時間 | 1,860 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
51,840 KB |
testcase_01 | AC | 84 ms
64,384 KB |
testcase_02 | AC | 36 ms
51,712 KB |
testcase_03 | AC | 43 ms
59,904 KB |
testcase_04 | AC | 44 ms
60,160 KB |
testcase_05 | AC | 79 ms
64,128 KB |
testcase_06 | AC | 70 ms
64,124 KB |
testcase_07 | AC | 44 ms
59,520 KB |
testcase_08 | AC | 36 ms
51,840 KB |
testcase_09 | AC | 435 ms
75,136 KB |
ソースコード
from itertools import permutations N, M = map(int, input().split()) table = [tuple(map(int, input().split())) for j in range(M)] ans = 0 for pos in permutations(range(N)): tot = 0 for item1, item2, score in table: if pos[item1] < pos[item2]: tot += score ans = max(ans, tot) print(ans)