Recent Posts
Notice
No Rules Rules
특식 배부 (feat. 백준, 27110번) 본문
728x90
반응형
특식 배부
https://www.acmicpc.net/problem/27110
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N, A, B, C, ans = 0;
cin >> N >> A >> B >> C;
N > A ? ans += A : ans += N;
N > B ? ans += B : ans += N;
N > C ? ans += C : ans += N;
cout << ans;
return 0;
}
// *&)*@*
반응형
조건식에 따라 연산하는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
2007년 (feat. 백준, 1924번) (0) | 2023.01.25 |
---|---|
홀수 (feat. 백준, 2576번) (0) | 2023.01.25 |
근손실 (feat. 백준, 18429번) (0) | 2023.01.06 |
마라톤 1 (feat. 백준, 10655번) (0) | 2023.01.06 |
2022년이 아름다웠던 이유 (feat. 백준, 27065번) (0) | 2023.01.02 |
Comments