QOJ.ac

QOJ

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

Judging History

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

  • [2023-08-13 18:08:15]
  • 评测
  • [2023-08-13 18:08:14]
  • 提交

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

#include <bits/stdc++.h>

using i64 = long long;

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

    std::cout << "3\n";
    std::cout << "1 2 3 \n";

    return 0;
}

output_test

#include <bits/stdc++.h>

using i64 = long long;

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

    std::cout << "1 2 3 \n";

    return 0;
}

詳細信息

Invalid Configuration File: failed to read Nin and Nout