[도전기록] 경기 전공의 전형적인 90문네 번째 문제.
문제.
생각
답안
#include <bits/stdc++.h>
#include <atcoder/all>
#include <vector>
#include <cstdint>
#define FOR(i,l,r) for(int i=(l);i<(r);++i)
#define RFOR(i,l,r) for(int i=(l);i>=(int)(r);i--)
#define rep(i,n) FOR(i,0,n)
#define rrep(i,n) RFOR(i,n-1,0)
#define int long long
#define ll long long
using namespace std;
using namespace atcoder;
const ll MX = 1e6;
const ll inf = 1e13;
const int mod = 1000000007;
int a[2001][2001];
signed main(){
int h,w;
cin>>h>>w;
vector<int> b(w);
vector<int> c(h);
rep(i,h) {
rep(j,w) {
cin>>a[i][j];
b[j]+=a[i][j];
c[i]+=a[i][j];
}
}
rep(i,h) {
rep(j,w) {
cout << c[i]+b[j]-a[i][j] << " ";
}
cout << "" << endl;
}
return 0;
}
Reference
이 문제에 관하여([도전기록] 경기 전공의 전형적인 90문네 번째 문제.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/meirai/articles/b6400cef77dd80텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)