bit 1003 Exchange for Cola
1237 단어 bit
Exchange for Cola
시간 제한: 1초 메모리 제한: 64M
Problem Description
The Cola company is holding a promotional activity that customerscan exchange B bottles of Cola with A caps. Now Silence has N caps. Furthermore, Silence can ask mm to borrow him some caps for anytimes as long as Silence is able to return the caps borrowed after he has used these caps to exchange Cola without buying any other Cola. Please tellSilence how many number of Cola Silence can drink.
Input
This problem contains multiple test cases. Each case contains oneline with three numbers N , A , B ,(1 <= N <= 10^9, 1 <= B < A <= 10^9), which have already been mentioned above.
Output
Print exactly one line with the maximal number of Cola Silence can drink by exchanging caps for each test case.
Sample Input
1 2 1
9 7 2
Sample Output
일
이#include<stdio.h>
int main(){
int N,A,B;
while(~scanf("%d%d%d",&N,&A,&B)){
//printf("%d",N*B/(A-B));
printf("%d
",N/(A-B)*B);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
bit 1003 Exchange for Cola
시간 제한: 1초 메모리 제한: 64M
Problem Description
The Cola company is holding a promotional activity that customerscan exchange ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.
#include<stdio.h>
int main(){
int N,A,B;
while(~scanf("%d%d%d",&N,&A,&B)){
//printf("%d",N*B/(A-B));
printf("%d
",N/(A-B)*B);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
bit 1003 Exchange for Cola시간 제한: 1초 메모리 제한: 64M Problem Description The Cola company is holding a promotional activity that customerscan exchange ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.