Recent Posts
Notice
No Rules Rules
홀수 (feat. 백준, 2576번) 본문
728x90
반응형
홀수
https://www.acmicpc.net/problem/2576
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <vector>
#include <algorithm>
#include <numeric>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
vector<int> ans;
for(register int n = 0, tmp; n < 7; ++n){
cin >> tmp;
if(tmp & 1)
ans.push_back(tmp);
}
if(ans.empty())
cout << "-1";
else{
sort(ans.begin(), ans.end());
cout << accumulate(ans.begin(), ans.end(), 0) << "\n" << *ans.begin();
}
return 0;
}
// *&)*@*
반응형
조건식에 따라 연산하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
A+B - 6 (feat. 백준, 10953번) (0) | 2023.01.25 |
---|---|
2007년 (feat. 백준, 1924번) (0) | 2023.01.25 |
특식 배부 (feat. 백준, 27110번) (0) | 2023.01.12 |
근손실 (feat. 백준, 18429번) (0) | 2023.01.06 |
마라톤 1 (feat. 백준, 10655번) (0) | 2023.01.06 |
Comments