1 条题解

  • 0
    @ 2024-11-4 20:18:49
    //水
    #include<bits/stdc++.h>
    using namespace std;
    int m,t,s;
    int main() {
    	cin>>m>>t>>s;
    	if(t==0) {
    		cout<<0<<endl;
    		return 0;
    	}
    	if(s%t==0)
    		cout<<max(m-s/t,0)<<endl;
    	else
    		cout<<max(m-s/t-1,0);
    	return 0;
    }
    
    • 1

    信息

    ID
    39
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    递交数
    37
    已通过
    28
    上传者