| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144629 | 张锦程 | 07苹果和虫子 | C++ | Accepted | 0 MS | 272 KB | 299 | 2026-01-24 14:35:18 |
#include<iostream> using namespace std; int main(){ int n,x,y; cin>>n>>x>>y; int t=0; if(y%x==0) t=y/x; else if(y%x!=0) t=y/x+1; else if(x=0) t=0; if(n-t>=0) cout<<n-t<<endl; else cout<<0<<endl; return 0; }