문제 링크입니다: https://www.acmicpc.net/problem/5532
간단한 구현 문제였습니다.
#include <iostream>
#include <algorithm>
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int L, A, B, C, D;
cin >> L >> A >> B >> C >> D;
int temp1 = L - (A / C);
if (A%C)
temp1--;
int temp2 = L - (B / D);
if (B%D)
temp2--;
cout << min(temp1, temp2) << "\n";
return 0;
}
개발환경:Visual Studio 2017
지적, 조언, 질문 환영입니다! 댓글 남겨주세요~
반응형
'알고리즘 > BOJ' 카테고리의 다른 글
백준 10451번 순열 사이클 (0) | 2018.11.02 |
---|---|
백준 2463번 비용 (0) | 2018.11.02 |
백준 12790번 Mini Fantasy War (0) | 2018.11.01 |
백준 10707번 수도요금 (0) | 2018.11.01 |
백준 2138번 전구와 스위치 (0) | 2018.11.01 |