Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
102145 | 蔡佳轩 | 11种树 | C++ | Wrong Answer | 0 MS | 268 KB | 164 | 2024-12-21 12:10:14 |
#include <iostream> using namespace std; int main(){ int n,k; cin>>n>>k; cout<<(n/k)+1; if(n%k!=0 && n%k>1){ cout<<(n/k)+1; } }
------Input------
1034 99
------Answer-----
12
------Your output-----
1111