Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
104291 | 黄雨婷 | 07苹果和虫子 | C++ | Wrong Answer | 1 MS | 280 KB | 198 | 2025-01-04 18:22:40 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() using namespace std; int main(){ int n,x,y,c; cin>>n>>x>>y; c=n-y*1.0/x; cout<<c; return 0; }
------Input------
5 1 12
------Answer-----
0
------Your output-----
-7