• Home
  • About
    • changsoooooo's Blog photo

      changsoooooo's Blog

      changsoooooo's Blog.

    • Learn More
    • Twitter
    • Facebook
    • Instagram
    • Github
    • Steam
  • 일상
  • 교육
    • 교육학
    • 정보 컴퓨터 교육
    • 임용
  • 개발
  • 잡지식
  • 한국사
  • Projects

2576(홀수)

08 Nov 2020

Reading time ~1 minute

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <math.h>
//홀수 2576
using namespace std;
int main(){
	ios::sync_with_stdio(0); 
	cin.tie(0);
	
	vector<int> nums;
	int total = 0;
	int min = 9999999;
	for (size_t i = 0; i < 7; i++)
	{
		int a;
		cin >> a;
		if (a % 2 == 1) {
			total += a;
			if (a < min) {
				min = a;
			}	
		}
	}
	if (total==0)
	{
		cout << "-1";
	}
	else
	{
		cout << total << '\n' << min;

	}
}


Share Tweet +1