1 条题解
-
0倪惟肖 LV 8 @ 2022-01-10 09:52:24
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
int n,x,y,t,rest;
cin>>n>>x>>y;
t=ceil((double)y/x);
if (t<n) rest=n-t;
else rest=0;
cout<<rest<<endl;
return 0;
}
- 1
信息
- ID
- 1024
- 难度
- 9
- 分类
- (无)
- 标签
- 递交数
- 3
- 已通过
- 3
- 通过率
- 100%
- 上传者