QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#139486#1. I/O TestFr1nGeLoveCompile Error//C++316b2023-08-13 18:07:192023-08-13 18:07:22

Judging History

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

  • [2023-08-13 18:07:22]
  • 评测
  • [2023-08-13 18:07:19]
  • 提交

config.txt

#include <bits/stdc++.h>

using i64 = long long;

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);

    int n;
    std::cin >> n;
    for (int i = 0; i < n; i++) {
        int x;
        std::cin >> x;
        std::cout << x << " ";
    }

    return 0;
}

input_test

3
1 2 3 

output_test

1 2 3 

詳細信息

Invalid Configuration File: failed to read Nin and Nout