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

Tests(3/10):


Code:

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


Run Info:

------Input------
459 2 1
------Answer-----
458
------Your output-----
459