Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5409 孙浩楠 苹果和虫子 C++ 通过 100 0 MS 252 KB 187 2020-08-02 13:04:46

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ int n,x,y,sy; cin>>n>>x>>y; sy=n-y/x; if(y%x != 0){ sy-=1; } if(sy < 0){ sy=0; } cout<<sy<<endl; return 0; }


测评信息: