#include using namespace std; typedef long long ll; typedef long double ld; #define rep(i,n) for (int i = 0; i < (n); ++i) templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (b> n >> m; vector> a(n,vector(m)); vector c(m); rep(i,n){ rep(j,m){ cin >> a[i][j]; c[j]+=a[i][j]; } } vector v(n); rep(i,n){ int res=0; rep(j,m){ res+=c[j]*a[i][j]; } v[i]=res; } sort(v.begin(),v.end(),greater()); ll ans=0; rep(i,n){ if(!(i&1)){ ans+=v[i]; } else{ ans-=v[i]; } } cout << ans << endl; }