const fs = require('fs');
let input = fs.readFileSync('/dev/stdin').toString().trim().split('\n');
input = input.map((e)=>+e)
let answer = 0
let totalVacation = input[0]
let totalKorean = input[1]
let totalMath = input[2]
let dayKorean = input[3]
let dayMath = input[4]
let studyingDaysForKorean = Math.floor(totalKorean / dayKorean)
if(totalKorean % dayKorean !== 0 ) studyingDaysForKorean += 1
let studyingDaysForMath = Math.floor(totalMath / dayMath)
if(totalMath % dayMath !== 0) studyingDaysForMath += 1
if(studyingDaysForKorean > studyingDaysForMath){
answer = totalVacation - studyingDaysForKorean
} else {
answer = totalVacation - studyingDaysForMath
}
console.log(answer)
1. 국어, 수학문제를 푸는 기간을 계산한다.
만약 나머지가 생기면? 1을 더한다.
2. 두 기간을 비교한다.
더 큰 기간을 최종 방학기간에서 뺀다.
어이없게 틀렸다.
%와 &을 헷갈리면 어떡하니..