Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118081 | 何旻慧 | 07苹果和虫子 | C++ | Wrong Answer | 1 MS | 268 KB | 321 | 2025-04-23 19:07:37 |
#include <iostream> #include <cstdio> using namespace std; int main() { int n,x,y; scanf("%d %d %d",&n,&x,&y); if(y%x==0){ cout<<n-(y/x)<<endl; } else if(n-(y/x)==0){ cout<<0; } else{ cout<<n-(y/x-y%x)<<endl; } return 0; }
------Input------
459 2 1
------Answer-----
458
------Your output-----
460