Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
102054 王煜鑫 11种树 C++ Wrong Answer 1 MS 268 KB 197 2024-12-21 11:43:20

Tests(0/11):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a,b; double c; cin>>a>>b; c=(a*1.0)/(b*1.0); if(a%b==0){ cout<<c; } else{ cout<<int(c)+1; } }


Run Info:

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