P1150 #3WA 为什么测试输出和评测输出不符?

P1150 Peter 的烟

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

3测试点我VScode输出和洛谷评测输出不符,是因为O2优化吗?还是代码出了问题?


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 感谢回复


|