Search
Duplicate
🍋

양념 반 후라이드 반

주차
15
문제번호
16917
언어
C++
티어
브론즈
유형
구현
nj_Blog
nj_상태
이해도
풀이
풀이 X
사람
이해도 2
13 more properties

Memo

양념 1마리를 사는 경우보다 후라이드가 남더라도 반반 2마리를 사는게 싸다면 반반 두마리를 사도록 해야한다!

Code

제출 날짜

@4/8/2021

메모리

2016 KB

시간

0 ms
#include <iostream> #include <vector> int A, B, C, x, y, result; void output() { std::cout << result; } void solution() { result = (C * 2 < A + B) ? 2 * std::min(x, y) * C + (x - std::min(x, y)) * std::min(A, 2 * C) + (y - std::min(x, y)) * std::min(B, 2 * C) \ : result = x * A + y * B; } void input() { std::cin >> A >> B >> C >> x >> y; } void preset() { std::ios_base::sync_with_stdio(false); std::cin.tie(NULL); std::cout.tie(NULL); } int main() { preset(); input(); solution(); output(); }
C++
복사