Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
11547 未命名(之人) 【入门】苹果和虫子 C++ 通过 0 MS 252 KB 158 2022-10-06 10:21:17

Tests(20/20):


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


测评信息: