QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#430212 | #5528. Least Annoying Constructive Problem | 36champ | WA | 1ms | 3680kb | C++20 | 316b | 2024-06-03 15:58:52 | 2024-06-03 15:58:52 |
Judging History
answer
#include <bits/stdc++.h>
#define ll long long
#define pb push_back
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int t = 1;
cin >> t;
while(t-->0)
{
int n;
cin >> n;
cout << n << "\n";
}
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3680kb
input:
3
output:
32730 32730 32730
result:
wrong answer Integer 32730 violates the range [1, 3]