結果

問題 No.1060 素敵な宝箱
ユーザー convexineqconvexineq
提出日時 2021-05-11 08:16:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-09-21 14:02:11
合計ジャッジ時間 2,863 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,656 KB
testcase_01 AC 46 ms
54,528 KB
testcase_02 AC 43 ms
54,528 KB
testcase_03 AC 44 ms
54,912 KB
testcase_04 AC 45 ms
55,040 KB
testcase_05 AC 43 ms
54,656 KB
testcase_06 AC 44 ms
54,784 KB
testcase_07 AC 48 ms
54,528 KB
testcase_08 AC 58 ms
63,616 KB
testcase_09 AC 60 ms
63,872 KB
testcase_10 AC 57 ms
63,360 KB
testcase_11 AC 57 ms
63,360 KB
testcase_12 AC 69 ms
70,912 KB
testcase_13 AC 71 ms
73,984 KB
testcase_14 AC 78 ms
76,416 KB
testcase_15 AC 83 ms
76,800 KB
testcase_16 AC 78 ms
76,160 KB
testcase_17 AC 67 ms
70,272 KB
testcase_18 AC 73 ms
73,600 KB
testcase_19 AC 71 ms
72,320 KB
testcase_20 AC 83 ms
76,928 KB
testcase_21 AC 84 ms
76,928 KB
testcase_22 AC 86 ms
76,928 KB
testcase_23 AC 71 ms
72,704 KB
testcase_24 AC 83 ms
76,800 KB
testcase_25 AC 82 ms
76,672 KB
testcase_26 AC 83 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
add = lambda x,y: [v+w for v,w in zip(x,y)]
n,m = map(int,input().split())
a = [list(map(int,input().split())) for _ in range(n)]
r = reduce(add,a)
p = [sum(rj*aij for rj,aij in zip(r,ai)) for i,ai in enumerate(a)]
order = sorted(range(n),key = lambda i:p[i],reverse=1)
x = reduce(add,[a[idx] for idx in order[::2]])
print(sum(xi**2 for xi in x) - sum((ri-xi)**2 for ri,xi in zip(r,x)))
0