結果

問題 No.1060 素敵な宝箱
ユーザー とりゐとりゐ
提出日時 2021-09-14 13:45:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 77,152 KB
最終ジャッジ日時 2024-06-27 03:35:58
合計ジャッジ時間 3,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,280 KB
testcase_01 AC 39 ms
52,892 KB
testcase_02 AC 40 ms
52,144 KB
testcase_03 AC 41 ms
53,648 KB
testcase_04 AC 39 ms
52,084 KB
testcase_05 AC 40 ms
52,272 KB
testcase_06 AC 39 ms
53,164 KB
testcase_07 AC 39 ms
52,232 KB
testcase_08 AC 47 ms
60,656 KB
testcase_09 AC 47 ms
61,076 KB
testcase_10 AC 46 ms
60,392 KB
testcase_11 AC 47 ms
61,184 KB
testcase_12 AC 62 ms
68,244 KB
testcase_13 AC 61 ms
70,468 KB
testcase_14 AC 63 ms
71,100 KB
testcase_15 AC 67 ms
77,152 KB
testcase_16 AC 61 ms
72,380 KB
testcase_17 AC 51 ms
65,112 KB
testcase_18 AC 60 ms
70,980 KB
testcase_19 AC 58 ms
68,936 KB
testcase_20 AC 62 ms
73,656 KB
testcase_21 AC 62 ms
73,768 KB
testcase_22 AC 62 ms
74,248 KB
testcase_23 AC 59 ms
69,880 KB
testcase_24 AC 70 ms
76,848 KB
testcase_25 AC 71 ms
76,884 KB
testcase_26 AC 69 ms
76,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
cnt=[0]*m
a=[]
for i in range(n):
  b=list(map(int,input().split()))
  a.append(b)
  for j in range(m):
    cnt[j]+=b[j]
c=[]
for i in range(n):
  tmp=0
  for j in range(m):
    tmp+=cnt[j]*a[i][j]
  c.append(tmp)
c.sort()
print(sum(c[1::2])-sum(c[::2]))
0