728x90
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int solution(int N,int M){
int day=0;
while(true){//노트북의 잔고가 0이 될때까지 반복됨
if(day%M==0) N++;
N--;
if(N==0)break;
day++;
}
return day;
}
int main() {
//N : 재고 M: 입고까지의 텀
int N,M;
cin>>N>>M;
cout<<solution(N,M);
return 0;
}
728x90
'Algorithm > 기타(기업등)' 카테고리의 다른 글
[SAP/C++] K consecutive identical characters (0) | 2021.04.21 |
---|---|
[EPPER/15회 4번] 100만들기 (0) | 2021.03.18 |
[EPPER/15회 5번]문자열 압축(하-1) (0) | 2021.03.18 |
[EPPER/13회 9번]N개의 작업공정(상-4) (0) | 2021.03.18 |
[EPPER/13회 9번]주울 수 있는 최대 돈(상-3) (0) | 2021.03.18 |