문제 링크
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV7GLXqKAWYDFAXB
C++ 풀이
#include <string>
#include <iostream>
using namespace std;
int main() {
string answer;
int T, N, sum, current, addN, temp = 0;
cin >> T;
for (int i = 1; i <= T; i++) {
cin >> N;
current = N / 2;
sum = 0;
addN = -1;
for (int j = 0; j < N; j++) {
for (int k = 1; k <= N; k++) {
scanf("%1d", &temp);
if ((k > current) && (k <= N - current))
sum += temp;
}
if (current == 0)
addN = 1;
current += addN;
}
answer += "#" + to_string(i) + " " + to_string(sum) + "\n";
}
cout << answer;
return 0;
}
반응형
'알고리즘 · 코딩' 카테고리의 다른 글
[SWEA 8741] 두문자어 (0) | 2020.06.18 |
---|---|
[SWEA 3456] 직사각형 길이 찾기 (0) | 2020.06.16 |
[프로그래머스] 거스름돈 (0) | 2020.06.10 |
[SWEA 3431] 준환이의 운동관리 (0) | 2020.06.09 |
[SWEA 6730] 장애물 경주 난이도 (0) | 2020.06.08 |