为什么?

P1001 A+B Problem

Always_Remember_It @ 2024-11-29 17:33:49


#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
    for(int i=1;i<=10000000000;i++);
    int a,b;cin>>a>>b;
    cout<<a+b<<endl;
    return 0;
}

我在测1s最多跑多少数据时,加到10^10还能过,这是什么道理?(顺便问一下CCF机子一秒最多能跑多少

by Phigros_11calors @ 2024-12-05 17:32:10

@Always_Remember_It

被O2自动注释掉了,要么关O2,要么for里面加一句printf("");


by friend_me @ 2024-12-09 19:43:35

这个我也不知道,建议保险起见比赛还是用 10^8


上一页 |