結果

問題 No.1060 素敵な宝箱
ユーザー wolgnikwolgnik
提出日時 2020-05-22 23:34:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-10-05 21:27:30
合計ジャッジ時間 2,694 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 54 ms
61,440 KB
testcase_09 AC 53 ms
61,312 KB
testcase_10 AC 52 ms
60,928 KB
testcase_11 AC 53 ms
61,312 KB
testcase_12 AC 63 ms
66,688 KB
testcase_13 AC 66 ms
68,480 KB
testcase_14 AC 67 ms
70,400 KB
testcase_15 AC 76 ms
76,928 KB
testcase_16 AC 72 ms
71,296 KB
testcase_17 AC 60 ms
65,408 KB
testcase_18 AC 65 ms
68,736 KB
testcase_19 AC 63 ms
67,584 KB
testcase_20 AC 69 ms
72,960 KB
testcase_21 AC 70 ms
73,344 KB
testcase_22 AC 70 ms
72,832 KB
testcase_23 AC 64 ms
67,968 KB
testcase_24 AC 77 ms
76,672 KB
testcase_25 AC 78 ms
76,928 KB
testcase_26 AC 79 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(N)]
table = [0] * M
for i in range(N):
  for j in range(M): table[j] += a[i][j]
a.sort(key = lambda x: -sum([x[i] * table[i] for i in range(M)]))
res = 0
for i in range(N):
  x = a[i]
  if i % 2 == 0: res += sum([x[i] * table[i] for i in range(M)])
  else: res -= sum([x[i] * table[i] for i in range(M)])
print(res)
0