https://www.acmicpc.net/problem/5532
#include <iostream>
using namespace std;
int main() {
int l,a,b,c,d;
cin >> l >>a >> b >> c >> d;
int x; // 국어
int y; // 수학
x = (a%c) == 0 ? a / c : a / c + 1;
y = (b%d) == 0 ? b / d : b / d + 1;
if (x > y)
cout << l - x;
else
cout << l - y;
}
'Programming > BaekJoon' 카테고리의 다른 글
[C++] 백준 1748번 : 수 이어 쓰기1 (0) | 2019.02.27 |
---|---|
[C++] 백준 8979번 : 올림픽 (0) | 2019.02.26 |
[C++] 백준 10707번 : 수도요금 (0) | 2019.02.26 |
[C++] 백준 2822번 : 점수 계산 (0) | 2019.02.26 |
[C++] 백준 5597번 : 과제 안 내신 분..? (0) | 2019.02.26 |