No Rules Rules

홀수 (feat. 백준, 2576번) 본문

생활/코테

홀수 (feat. 백준, 2576번)

개발하는 완두콩 2023. 1. 25. 15:23
728x90
반응형

홀수
https://www.acmicpc.net/problem/2576

 

2576번: 홀수

7개의 자연수가 주어질 때, 이들 중 홀수인 자연수들을 모두 골라 그 합을 구하고, 고른 홀수들 중 최솟값을 찾는 프로그램을 작성하시오. 예를 들어, 7개의 자연수 12, 77, 38, 41, 53, 92, 85가 주어지

www.acmicpc.net

 

// 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