結果
問題 | No.357 品物の並び替え (Middle) |
ユーザー | ckawatak |
提出日時 | 2017-10-08 23:29:26 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 447 bytes |
コンパイル時間 | 201 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 151,936 KB |
最終ジャッジ日時 | 2024-11-17 05:49:49 |
合計ジャッジ時間 | 55,888 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 72 ms
151,936 KB |
testcase_01 | AC | 38 ms
128,176 KB |
testcase_02 | AC | 52 ms
67,712 KB |
testcase_03 | AC | 51 ms
137,856 KB |
testcase_04 | AC | 70 ms
82,528 KB |
testcase_05 | AC | 66 ms
151,740 KB |
testcase_06 | AC | 48 ms
137,344 KB |
testcase_07 | AC | 38 ms
127,868 KB |
testcase_08 | AC | 210 ms
151,080 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
ソースコード
from itertools import permutations N, M = list(map(int, input().split(' '))) S = [] for i in range(N): S.append([0 for _ in range(N)]) for i in range(M): f, t, s = list(map(int, input().split(' '))) S[f][t] = s solution = -1 for p in permutations([i for i in range(N)]): score = 0 for i in range(N): for j in range(i+1, N): score += S[p[i]][p[j]] solution = max(solution, score) print(solution)