Post

[D1] 홀수만 더하기 - 2072

[D1] 홀수만 더하기 - 2072

문제 링크

문제 링크

성능 요약

메모리: 13,336 KB, 시간: 7 ms

코드길이: 403 Bytes

출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do

코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include<iostream>

using namespace std;

int main(int argc, char** argv)
{
	int test_case;
	int T;
	cin>>T;
	for(test_case = 1; test_case <= T; ++test_case)
	{
        int sum=0;
        int tmp=0;
        for(int i=0;i<10;i++){
            cin >> tmp;
            if(tmp%2==1) sum += tmp;
        }
        cout << "#"<<test_case<<" "<<sum<<"\n";
	}
	return 0;//정상종료시 반드시 0을 리턴해야합니다.
}
This post is licensed under CC BY 4.0 by the author.