Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144620 张锦程 07苹果和虫子 C++ Wrong Answer 0 MS 272 KB 245 2026-01-24 14:31:48

Tests(5/10):


Code:

#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; cout<<n-t<<endl; return 0; }


Run Info:

------Input------
5 1 12
------Answer-----
0
------Your output-----
-7