Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
116228 江梵睿 11种树 C++ Wrong Answer 0 MS 264 KB 174 2025-04-06 19:21:23

Tests(0/11):


Code:

#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; }


Run Info:

------Input------
1034 99
------Answer-----
12
------Your output-----
0