Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
97818 | 欧阳俊懿 | 11种树 | C++ | Wrong Answer | 0 MS | 264 KB | 177 | 2024-11-16 16:32:19 |
#include<iostream> using namespace std; int main() { int n,a,b; cin>>a>>b; if(a%b>1) { n=a/b+2; } else { n=a/b+1; cout<<n<<endl; } return 0; }
------Input------
1034 99
------Answer-----
12
------Your output-----