4 条题解
-
1Prettygirl (12312王诺怡) LV 8 @ 2021-11-21 21:27:56
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int n,x,y;
cin>>n>>x>>y;
cout<<n-ceil(1.0*y/x);
return 0;
} -
02024-08-18 18:03:56@
#include<stdio.h> using namespace std; int main(){ int n, x, y; scanf("%d%d%d", &n, &x, &y); printf("%d", n - y/x - (y%x != 0)); return 0; }
-
-12021-11-19 16:25:08@
#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;
} -
-22021-11-19 16:26:46@
#include<iostream>
#include<cmath>
using namespace std;
int main()
{
int n,x;
double y;
cin>>n>>x>>y;
cout<<n-ceil(y/x);
return 0;
}
- 1
信息
- ID
- 2324
- 难度
- 2
- 分类
- (无)
- 标签
- 递交数
- 227
- 已通过
- 128
- 通过率
- 56%
- 被复制
- 4
- 上传者