Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1049 | 王彦皓 | 11种树 | C++ | Wrong Answer | 0 MS | 268 KB | 148 | 2023-06-24 15:43:14 |
#include <iostream> using namespace std; int main(){ int n,k,t; cin>>n>>k; t=n/k; if(n%k>=1){ t+=1; } cout<<t<<endl; return 0; }
------Input------
596 99
------Answer-----
8
------Your output-----
7