16 条题解

  • -1
    @ 2024-4-6 9:34:50
    #include<bits/stdc++.h>
    using namespace std;
    int const N=1e5+10;
    double n,x,y;
    int main(){
    	cin>>n>>x>>y;
    	int ans=n-y/x;
    	if(ans<=0){
    		cout<<"0";
    		return 0;
    	}
    	cout<<ans;
    	return 0;
    }
    
    

    信息

    ID
    871
    时间
    1000ms
    内存
    128MiB
    难度
    7
    标签
    递交数
    1589
    已通过
    333
    上传者