結果

問題 No.1060 素敵な宝箱
ユーザー nishigakenishigake
提出日時 2022-05-30 23:07:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 76,364 KB
最終ジャッジ日時 2024-09-21 00:55:02
合計ジャッジ時間 3,569 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,444 KB
testcase_01 AC 38 ms
52,380 KB
testcase_02 AC 38 ms
52,692 KB
testcase_03 AC 37 ms
52,532 KB
testcase_04 AC 38 ms
52,444 KB
testcase_05 AC 37 ms
52,736 KB
testcase_06 AC 38 ms
53,104 KB
testcase_07 AC 37 ms
53,228 KB
testcase_08 AC 52 ms
60,864 KB
testcase_09 AC 52 ms
59,776 KB
testcase_10 AC 51 ms
59,776 KB
testcase_11 AC 49 ms
59,776 KB
testcase_12 AC 60 ms
65,664 KB
testcase_13 AC 63 ms
67,584 KB
testcase_14 AC 65 ms
68,480 KB
testcase_15 AC 76 ms
75,940 KB
testcase_16 AC 66 ms
70,400 KB
testcase_17 AC 60 ms
65,024 KB
testcase_18 AC 64 ms
67,456 KB
testcase_19 AC 61 ms
66,432 KB
testcase_20 AC 71 ms
72,576 KB
testcase_21 AC 70 ms
71,680 KB
testcase_22 AC 68 ms
72,320 KB
testcase_23 AC 64 ms
66,304 KB
testcase_24 AC 77 ms
76,032 KB
testcase_25 AC 76 ms
76,032 KB
testcase_26 AC 85 ms
76,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = list(map(int,input().split()))
boxes = [list(map(int,input().split())) for _ in range(N)]
totals = [sum([boxes[j][i] for j in range(N)]) for i in range(M)]
values = [sum([boxes[i][j]*totals[j] for j in range(M)]) for i in range(N)]
values.sort()
print(sum([values[i] * (-1)**(i+1) for i in range(N)]))
0