Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145818 冰块ee 07苹果和虫子 C++ Wrong Answer 0 MS 268 KB 179 2026-01-25 19:08:11

Tests(1/10):


Code:

#include<bits/stdc++.h> using namespace std; int n,x,y,s; int main(){ cin>>n>>x>>y; s=x*y; if(n-s>0){ cout<<n-s; }else{ cout<<0; } }


Run Info:

------Input------
290 4 8
------Answer-----
288
------Your output-----
258