QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#714244#1. I/O TestCore_65536Compile Error//C++23703b2024-11-05 22:14:022024-11-05 22:14:03

Judging History

你现在查看的是最新测评结果

  • [2024-11-05 22:14:03]
  • 评测
  • [2024-11-05 22:14:02]
  • 提交

config.txt

10000000

input_test

#include <bits/stdc++.h>
using namespace std;
#define endl '\n'

int main(){
    ios::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    register int n;  cin>>n;
    register long long ans = 0;
    while(n--){
        register long long x;  cin>>x;
        ans += x;
    }
    cout<<ans<<endl;
}

output_test

#include <bits/stdc++.h>
using namespace std;
#define endl '\n'

int main(){
    ios::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    register int n;  cin>>n;
    while(n--){
        cout<<10000000<<endl;
    }
    // register long long ans = 0;
    // while(n--){
    //     register long long x;  cin>>x;
    //     ans += x;
    // }
    // cout<<ans<<endl;
}

Details

Invalid Configuration File: failed to read Nin and Nout