반응형
문제
코드
#include<iostream>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int testcase;
int T;
int result = 0;
int Input;
cin >> T;
for (testcase = 0; testcase < T; ++testcase) {
for (int i = 0; i < 10; ++i)
{
cin >> Input;
if (Input % 2 == 1) result += Input;
}
cout << "#" << testcase + 1 << " " << result << '\n';
result = 0;
}
}
반응형
'Development > Algorithm' 카테고리의 다른 글
[BOJ] 11726. 2 x n 타일링 (0) | 2020.09.20 |
---|---|
[BOJ] 1463. 1로 만들기 (0) | 2020.09.20 |
[BOJ] 13460. 구슬 탈출 2 (0) | 2020.09.20 |
[SWEA] 1206. [S/W 문제해결 기본] 1일차 - View (0) | 2020.09.19 |
[BOJ] 11718. 그대로 출력하기 (0) | 2020.09.18 |