Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145211 徐景一 07苹果和虫子 C++ Wrong Answer 0 MS 276 KB 169 2026-01-25 09:46:16

Tests(5/10):


Code:

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


Run Info:

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