結果
問題 | No.90 品物の並び替え |
ユーザー | akitsugu777 |
提出日時 | 2019-08-19 16:42:07 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 322 bytes |
コンパイル時間 | 184 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 65,952 KB |
最終ジャッジ日時 | 2024-10-04 14:21:46 |
合計ジャッジ時間 | 9,943 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,624 KB |
testcase_01 | AC | 1,005 ms
16,896 KB |
testcase_02 | AC | 26 ms
10,624 KB |
testcase_03 | AC | 78 ms
11,392 KB |
testcase_04 | AC | 121 ms
11,392 KB |
testcase_05 | AC | 1,087 ms
17,152 KB |
testcase_06 | AC | 733 ms
17,024 KB |
testcase_07 | AC | 38 ms
10,752 KB |
testcase_08 | AC | 29 ms
10,752 KB |
testcase_09 | TLE | - |
ソースコード
import itertools n, m = map(int,input().split()) n = [str(i) for i in range(n)] l1 = list(itertools.permutations(n)) l2 = [list(map(str,input().split())) for _ in range(m)] l = [] for i in l1: x = 0 for j in l2: if i.index(j[0]) < i.index(j[1]): x += int(j[2]) l.append(x) print(max(l))