結果

問題 No.1060 素敵な宝箱
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-24 12:43:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 76,484 KB
最終ジャッジ日時 2024-06-25 07:28:53
合計ジャッジ時間 2,889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 36 ms
52,608 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 45 ms
59,648 KB
testcase_09 AC 46 ms
59,264 KB
testcase_10 AC 43 ms
59,008 KB
testcase_11 AC 43 ms
59,392 KB
testcase_12 AC 52 ms
65,044 KB
testcase_13 AC 53 ms
66,816 KB
testcase_14 AC 54 ms
68,224 KB
testcase_15 AC 56 ms
73,108 KB
testcase_16 AC 54 ms
69,356 KB
testcase_17 AC 48 ms
63,068 KB
testcase_18 AC 53 ms
66,432 KB
testcase_19 AC 51 ms
66,304 KB
testcase_20 AC 56 ms
70,912 KB
testcase_21 AC 55 ms
70,016 KB
testcase_22 AC 55 ms
70,784 KB
testcase_23 AC 52 ms
65,792 KB
testcase_24 AC 64 ms
76,384 KB
testcase_25 AC 62 ms
76,436 KB
testcase_26 AC 63 ms
76,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main1(n,m,a):
  ary=[0]*m
  for x in a:
    for j in range(m):
      ary[j]+=x[j]
  b=[]
  for x in a:
    tmp=0
    for j in range(m):
      tmp+=x[j]*ary[j]
    b.append(tmp)
  b.sort()
  x=sum([v for v in b[::2]])
  y=sum([v for v in b[1::2]])
  return abs(x-y)
if __name__=='__main__':
  n,m=map(int,input().split())
  a=[list(map(int,input().split())) for _ in range(n)]
  ret1=main1(n,m,a)
  print(ret1)
0