QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#116026#1. I/O TestmomoyuuCompile Error//C++17367b2023-06-27 23:48:112023-06-27 23:48:12

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-06-27 23:48:12]
  • 评测
  • [2023-06-27 23:48:11]
  • 提交

config.txt


input_test

#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<cassert>
using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n;
    cin>>n;
    ll sum = 0;
    for(int i = 0;i<n;i++){
        ll a;
        cin>>a;
        sum += a;
    }
    cout<<sum<<endl;
}

output_test


詳細信息

Invalid Configuration File: failed to read Nin and Nout