📄문제
🔍코드
L = int(input())
A = int(input())
B = int(input())
C = int(input())
D = int(input())
res1 = 0
res2 = 0
res3 = 0
if A % C != 0:
res1 += (A // C) + 1
else:
res1 += A // C
if B % D != 0:
res2 += (B // D) + 1
else:
res2 += B // D
if res1 > res2:
res3 += res1
else:
res3 += res2
print(L - res3)
'백준 알고리즘' 카테고리의 다른 글
[백준(BOJ) - Python] 2798번 <블랙잭> (0) | 2022.02.21 |
---|---|
[백준(BOJ) - Python] 4153번 <직각삼각형> (0) | 2022.02.19 |
[백준(BOJ) - Python] 1085번 <직사각형에서 탈출> (0) | 2022.02.19 |
[백준(BOJ) - Python] 10707번 <수도요금> (0) | 2022.02.15 |
[백준(BOJ) - Python] 2530번 <인공지능 시계> (0) | 2022.02.14 |