結果

問題 No.1060 素敵な宝箱
ユーザー 草苺奶昔草苺奶昔
提出日時 2023-05-18 00:51:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-05-09 07:48:42
合計ジャッジ時間 3,706 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
66,944 KB
testcase_01 AC 59 ms
66,816 KB
testcase_02 AC 58 ms
66,688 KB
testcase_03 AC 59 ms
66,688 KB
testcase_04 AC 61 ms
66,688 KB
testcase_05 AC 60 ms
66,688 KB
testcase_06 AC 59 ms
67,072 KB
testcase_07 AC 60 ms
66,816 KB
testcase_08 AC 65 ms
69,632 KB
testcase_09 AC 72 ms
69,760 KB
testcase_10 AC 67 ms
69,120 KB
testcase_11 AC 64 ms
69,760 KB
testcase_12 AC 91 ms
75,008 KB
testcase_13 AC 79 ms
78,464 KB
testcase_14 AC 79 ms
78,208 KB
testcase_15 AC 82 ms
78,848 KB
testcase_16 AC 80 ms
78,464 KB
testcase_17 AC 72 ms
73,472 KB
testcase_18 AC 84 ms
78,208 KB
testcase_19 AC 85 ms
78,336 KB
testcase_20 AC 86 ms
78,464 KB
testcase_21 AC 82 ms
78,720 KB
testcase_22 AC 82 ms
78,720 KB
testcase_23 AC 79 ms
78,464 KB
testcase_24 AC 85 ms
78,848 KB
testcase_25 AC 86 ms
78,336 KB
testcase_26 AC 84 ms
78,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import List


def yuki1060(grid: List[List[int]]) -> int:
    ROW, COL = len(grid), len(grid[0])
    colSum = [0] * COL
    for i in range(ROW):
        for j in range(COL):
            colSum[j] += grid[i][j]
    rowPrice = [0] * ROW
    for i in range(ROW):
        for j in range(COL):
            rowPrice[i] += grid[i][j] * colSum[j]
    rowPrice.sort(reverse=True)
    res1 = sum(rowPrice[::2])
    res2 = sum(rowPrice[1::2])
    return res1 - res2


if __name__ == "__main__":
    n, m = map(int, input().split())
    grid = [list(map(int, input().split())) for _ in range(n)]
    print(yuki1060(grid))
0