結果
問題 | No.90 品物の並び替え |
ユーザー | bellangeldindon |
提出日時 | 2019-05-08 16:05:34 |
言語 | Python2 (2.7.18) |
結果 |
TLE
|
実行時間 | - |
コード長 | 594 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 14,208 KB |
最終ジャッジ日時 | 2024-07-02 00:28:58 |
合計ジャッジ時間 | 13,389 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 13 ms
6,816 KB |
testcase_01 | AC | 2,067 ms
14,080 KB |
testcase_02 | AC | 11 ms
6,940 KB |
testcase_03 | AC | 147 ms
7,168 KB |
testcase_04 | AC | 174 ms
7,040 KB |
testcase_05 | AC | 2,154 ms
14,208 KB |
testcase_06 | AC | 1,946 ms
14,208 KB |
testcase_07 | AC | 28 ms
6,944 KB |
testcase_08 | AC | 11 ms
6,944 KB |
testcase_09 | TLE | - |
ソースコード
N, M = map(int, raw_input().split()) sequence = [[]] memo = [] while sequence != []: now = sequence.pop(0) if len(now) == N: memo.append(now) else: for i in range(0, N): newseq = [] for j in range(0, len(now)): newseq.append(now[j]) if i not in newseq: newseq.append(i) sequence.append(newseq) pointlist = [] for i in range(0, M): pointlist.append(map(int, raw_input().split())) max = 0 for i in range(0, len(memo)): sum = 0 for j in range(0, M): if memo[i][pointlist[j][0]] < memo[i][pointlist[j][1]]: sum += pointlist[j][2] if max < sum: max = sum print max