Notice
Recent Posts
Recent Comments
Link
알고리즘 모음(C++)
백준 14215 - 세 막대(C++) 본문
문제 링크입니다. https://www.acmicpc.net/problem/14215
자세한 것은 코드를 참고해주세요.
#define _CRT_SECURE_NO_WARNINGS
#include <cstring>
#include <vector>
#include <iostream>
#include <algorithm>
#include <queue>
#include <cmath>
#include <cstdio>
#include <string>
using namespace std;
int x, y, z;
int maxi, sum;
int main() {
cin.tie(0);
cout.tie(0);
cin >> x >> y >> z;
sum = x + y + z;
maxi = max(x, y);
maxi = max(maxi, z);
if(maxi >= sum-maxi){
cout << (sum-maxi) + (sum-maxi-1);
}
else{
cout << sum;
}
return 0;
}
질문 및 조언은 댓글을 남겨주세요.
'백준' 카테고리의 다른 글
백준 7785 - 회사에 있는 사람(C++) (0) | 2023.12.14 |
---|---|
백준 14461 - 소가 길을 건너간 이유 7(C++) (0) | 2023.12.12 |
백준 5073 - 삼각형과 세 변(C++) (0) | 2023.12.09 |
백준 10101 - 삼각형 외우기(C++) (0) | 2023.12.09 |
백준 9063 - 대지(C++) (2) | 2023.12.09 |