Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
144637 马俊潇 07苹果和虫子 C++ Wrong Answer 0 MS 268 KB 216 2026-01-24 14:40:03

Tests(3/10):


Code:

#include<iostream> using namespace std; int main(){ int n,x,y,a=0; cin>>n>>x>>y; if(y%x==0){ a=n-y/x; cout<<a; }else{ a=x-y/x-1; cout<<a;} return 0;}


Run Info:

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