1 条题解
-
0
202509cj108 (王宇浩) LV 5 @ 2025-12-13 15:33:51
#include<bits/stdc++.h>
using namespace std;
int main( )
{
int n,x,y,sy;
cin>>n>>x>>y;
if (y%x==0)
{
sy=n-y/x;
}
else
{
sy=n-y/x-1;
}
cout<<sy;
return 0;
}
- 1
信息
- ID
- 2878
- 难度
- 3
- 分类
- (无)
- 标签
- 递交数
- 108
- 已通过
- 52
- 通过率
- 48%
- 上传者