Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
116229 | 江梵睿 | 11种树 | C++ | Wrong Answer | 0 MS | 260 KB | 174 | 2025-04-06 19:21:51 |
#include <iostream> #include <cstdio> using namespace std; int main() { int n,k,y; y=n/k; if(n%k==1){ y+=1; } cout<<y; return 0; }
------Input------
1034 99
------Answer-----
12
------Your output-----
0