fork(1) download
  1. #include <iostream>
  2. #include <stdio.h>
  3. using namespace std;
  4.  
  5. int main() {
  6. int n, k = 0;
  7. cin >> n; cin.ignore(); //считываем n и игнорируем символ перевода строки
  8. const int N = 2 * n + 1;
  9. char c[N];
  10. for(int i = 0; i < n; i++) {
  11. fgets(c, N, stdin); //считываем строку
  12. for(int j = 0; j < i; j++)
  13. k = k + c[j << 1] - 48; //переводим символ из ascii кода в число
  14. }
  15. cout << k;
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0s 4476KB
stdin
5
1 1 1 1 0
1 0 1 0 1
1 1 1 0 1
1 0 0 0 1
0 1 1 1 1
stdout
7