結果

問題 No.90 品物の並び替え
ユーザー MaboyMaboy
提出日時 2017-04-22 18:12:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,562 ms / 5,000 ms
コード長 226 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 70,400 KB
最終ジャッジ日時 2024-07-21 16:11:58
合計ジャッジ時間 4,170 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 212 ms
19,840 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 39 ms
11,392 KB
testcase_04 AC 48 ms
11,520 KB
testcase_05 AC 242 ms
19,712 KB
testcase_06 AC 173 ms
17,920 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 2,562 ms
70,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N,M=map(int, input().split())
s=[list(map(int,input().split())) for x in range(M)]
ol=list(itertools.permutations([x for x in range(N)]))
a=set([sum([(a[l]<a[r])*s for l,r,s in s]) for a in ol])
print(max(a))
0