QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#575560 | #9308. World Cup | 2410017640# | WA | 0ms | 3684kb | C++20 | 727b | 2024-09-19 15:25:24 | 2024-09-19 15:25:25 |
Judging History
answer
#define _CRT_SECURE_NO_WARNINGS 1
#include<bits/stdc++.h>
#include<iostream>
#include<algorithm>
#define ll long long
#define pii pair<int,int>
#define pll pair<long,long>
#define ls(k) (k*2) //抽象点的
#define rs(k) (k*2+1)
#define all(x) (x).begin(), (x).end()
#define do_unique(x) sort(all((x))); (x).resize(unique(all((x))) - (x).begin())
using namespace std; void run() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); }
#define endl "\n"
// /**/ #define endl "\n\n"
int n, m;
int x, y, z;
string s;
const ll N = 1e5 + 10;
void solve()
{
for (int i = 0; i < 32; i++)
cin >> x;
cout << 1;
}
int main() {
run();
ll T = 1;
cin >> T;
while (T--) solve(); return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3684kb
input:
1 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1
output:
1
result:
ok 1 number(s): "1"
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 3660kb
input:
32 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 2 1 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 3 1 2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 4 1 2 3 5 6 7 8 9 10 11 12 13 14 15 ...
output:
11111111111111111111111111111111
result:
wrong output format Expected integer, but "11111111111111111111111111111111" found