結果
問題 | No.90 品物の並び替え |
ユーザー | 141sksk |
提出日時 | 2019-08-31 20:19:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 523 bytes |
コンパイル時間 | 84 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-05-04 00:15:16 |
合計ジャッジ時間 | 3,273 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import itertools def main(): n, m = map(int, input().split()) myList = [[0] * n for _ in range(n)] for _ in range(m): i1, i2, score = map(int, input().split()) myList[i1][i2] = score mx = 0 for cmb in itertools.permutations([i for i in range(n)]): total = 0 for j in range(n - 1): for k in range(j + 1, n): total += myList[cmb[j]][cmb[k]] if total > mx: mx = total print(total) if __name__ == "__main__": main()