Blame view

P19991_en/S001-AC.cc 350 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <iostream>
#include <string>

using namespace std;

int main()
{
	int n,count = 0;
	char num;

	cin >> n;

	if(n < 1)
	{
		cout << 0 << endl;
		return 0;
	}
	for(int i = 0; i < n; i++)
	{
		for(int j = 0; j < n; j++)
		{
			cin >> num;
			if(j == n-1 - i || j == i)
			{
				count += num-48;
			}
		}
	}
	cout << count << endl;
	return 0;
}