QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#430212#5528. Least Annoying Constructive Problem36champWA 1ms3680kbC++20316b2024-06-03 15:58:522024-06-03 15:58:52

Judging History

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

  • [2024-06-03 15:58:52]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3680kb
  • [2024-06-03 15:58:52]
  • 提交

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";
    }
}

Details

Tip: Click on the bar to expand more detailed information

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]