fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int MAXN=2000;
  4. int G[MAXN][MAXN];
  5. int main() {
  6.  
  7. int n;cin>>n;
  8. for(int i=1;i<=n;i++){
  9. for(int j=1;j<=n;j++){
  10. cin>>G[i][j];
  11. }
  12. }
  13. int S[MAXN];
  14. for(int i=1;i<=n;i++){
  15. for(int j=1;j<=n;j++){
  16. if(G[i][j]!=1){
  17. S[j]=S[j]+1;
  18. }else{
  19. S[j]=0;
  20. }
  21. }
  22. for(int x=1;x<=n;x++){
  23. cout<<S[x]<<" ";
  24. }cout<<endl;
  25. }
  26. return 0;
  27. }
Success #stdin #stdout 0s 5268KB
stdin
4
0 0 0 1
0 0 0 0
0 1 0 0
0 0 0 0
stdout
1 1 1 0 
2 2 2 1 
3 0 3 2 
4 1 4 3