| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144645 | 马俊潇 | 07苹果和虫子 | C++ | Wrong Answer | 0 MS | 272 KB | 220 | 2026-01-24 14:44:45 |
#include<iostream> using namespace std; int main(){ int n,x,y,a=0; cin>>n>>x>>y; if(y%x==0){ a=a+n-y/x; cout<<a; }else{ a=a+n-y/x-1; cout<<a;} return 0;}
------Input------
5 1 12
------Answer-----
0
------Your output-----
-7