結果

問題 No.1060 素敵な宝箱
ユーザー 👑 rin204rin204
提出日時 2022-10-29 14:23:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 76,624 KB
最終ジャッジ日時 2024-07-06 13:15:17
合計ジャッジ時間 2,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,976 KB
testcase_01 AC 32 ms
53,180 KB
testcase_02 AC 32 ms
52,484 KB
testcase_03 AC 32 ms
52,884 KB
testcase_04 AC 32 ms
52,636 KB
testcase_05 AC 31 ms
52,272 KB
testcase_06 AC 31 ms
53,404 KB
testcase_07 AC 31 ms
53,072 KB
testcase_08 AC 40 ms
61,420 KB
testcase_09 AC 41 ms
62,552 KB
testcase_10 AC 43 ms
61,912 KB
testcase_11 AC 41 ms
61,724 KB
testcase_12 AC 47 ms
67,532 KB
testcase_13 AC 51 ms
71,196 KB
testcase_14 AC 52 ms
71,248 KB
testcase_15 AC 61 ms
76,380 KB
testcase_16 AC 52 ms
71,988 KB
testcase_17 AC 46 ms
66,668 KB
testcase_18 AC 50 ms
68,780 KB
testcase_19 AC 51 ms
69,448 KB
testcase_20 AC 52 ms
73,540 KB
testcase_21 AC 53 ms
72,808 KB
testcase_22 AC 52 ms
73,340 KB
testcase_23 AC 49 ms
69,484 KB
testcase_24 AC 57 ms
76,624 KB
testcase_25 AC 58 ms
76,380 KB
testcase_26 AC 59 ms
76,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(n)]
tot = [0] * m
for row in A:
    for i, a in enumerate(row):
        tot[i] += a

for row in A:
    s = 0
    for a, t in zip(row, tot):
        s += a * t
    row.append(s)

A.sort(key=lambda x:-x[-1])
X = [0] * m
Y = [0] * m
t = 0
for row in A:
    if t == 0:
        for i, a in enumerate(row[:-1]):
            X[i] += a
    else:
        for i, a in enumerate(row[:-1]):
            Y[i] += a
    t ^= 1

def f(X):
    return sum(x ** 2 for x in X)

score = f(X) - f(Y)
print(score)
0