| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145639 | 王一德 | 07苹果和虫子 | C++ | Wrong Answer | 0 MS | 268 KB | 193 | 2026-01-25 17:21:06 |
#include<iostream> using namespace std; int main(){ int n,x,y,c; cin>>n>>x>>y; if(y%x!=0){ c=y/x+1; }else{ c=y/x; } cout<<n-c; return 0; }
------Input------
5 1 12
------Answer-----
0
------Your output-----
-7