Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
126307 | 陈淮遇 | 11种树 | C++ | Wrong Answer | 1 MS | 272 KB | 159 | 2025-07-17 16:31:35 |
#include<bits/stdc++.h> using namespace std; int main() { int a; int b; cin >> a >> b; int c=a/b; int d=a%b; int e=c+d; cout<<e; return 0; }
------Input------
1034 99
------Answer-----
12
------Your output-----
54