Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
114827 鲁博睿 07苹果和虫子 C++ Wrong Answer 0 MS 272 KB 197 2025-03-23 16:12:23

Tests(4/10):


Code:

#include <bits/stdc++.h> ? using namespace std; int main() { int a,b,c,d; cin>>a>>b>>c; if(c%2==1){ cout<<a-(c/b)-1; } if(c%2==0){ cout<<a-(c/b); } return 0; }


Run Info:

------Input------
453 8 30
------Answer-----
449
------Your output-----
450