Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
5487 邱一涵 07苹果和虫子 C++ Wrong Answer 0 MS 268 KB 212 2024-11-16 20:09:50

Tests(4/10):


Code:

#include<iostream> #include<cstdio> #include<cstring> #include<cmath> using namespace std; int main(){ float x,y; int n; cin>>n>>x>>y; cout<<(int)(n-y/x)<<endl; return 0; }


Run Info:

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