結果
問題 | No.90 品物の並び替え |
ユーザー | 👑 Kazun |
提出日時 | 2020-10-14 16:12:06 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 359 ms / 5,000 ms |
コード長 | 360 bytes |
コンパイル時間 | 347 ms |
コンパイル使用メモリ | 82,348 KB |
実行使用メモリ | 76,208 KB |
最終ジャッジ日時 | 2024-07-20 19:09:53 |
合計ジャッジ時間 | 1,721 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
51,840 KB |
testcase_01 | AC | 75 ms
67,456 KB |
testcase_02 | AC | 38 ms
52,180 KB |
testcase_03 | AC | 50 ms
61,952 KB |
testcase_04 | AC | 53 ms
61,184 KB |
testcase_05 | AC | 80 ms
67,840 KB |
testcase_06 | AC | 70 ms
67,456 KB |
testcase_07 | AC | 51 ms
61,756 KB |
testcase_08 | AC | 39 ms
52,224 KB |
testcase_09 | AC | 359 ms
76,208 KB |
ソースコード
from itertools import permutations N,M=map(int,input().split()) X=[0]*M for i in range(M): x,y,a=map(int,input().split()) X[i]=(x,y,a) Max=-1 Index=[0]*N for U in permutations(range(N)): T=0 for i in range(N): Index[U[i]]=i for (x,y,a) in X: if Index[x]<Index[y]: T+=a if T>Max: Max=T print(Max)