nobody16520 @ 2024-07-30 22:15:19
#include <bits/stdc++.h>
using namespace std;
int main() {
int n=0,k=0,total=0;
cin >>n >>k;
total=n/k+n;
while(n/k>=k)
{
n=n/k;
total=total+n/k;
}
cout <<total <<endl;
return 0;
}
by nobody16520 @ 2024-07-30 22:18:27
另外鼠标放在WA上出现的灰色弹窗是什么意思?
by nobody16520 @ 2024-07-30 22:25:52
该题我的问题已经想到答案,谢谢
by WEICY123 @ 2024-07-30 22:38:15
@nobody16520 灰色弹窗是指这个测试样例AC代码的输出与你代码的输出不同
by nobody16520 @ 2024-07-31 19:48:05
@WEICY123 感谢回复