QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#565382#9308. World CupMoRanSkyWA 0ms3808kbC++141.1kb2024-09-15 21:09:362024-09-15 21:09:36

Judging History

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

  • [2024-09-15 21:09:36]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3808kb
  • [2024-09-15 21:09:36]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

#define pb push_back
#define fi first
#define se second
#define mp make_pair

typedef pair<int, int> PII;
typedef long long LL;

template <typename T> bool chkMax(T &x, T y) { return (y > x) ? x = y, 1 : 0; }
template <typename T> bool chkMin(T &x, T y) { return (y < x) ? x = y, 1 : 0; }

template <typename T> void inline read(T &x) {
	int f = 1; x = 0; char s = getchar();
	while (s < '0' || s > '9') { if (s == '-') f = -1; s = getchar(); }
	while (s <= '9' && s >= '0') x = x * 10 + (s ^ 48), s = getchar();
	x *= f;
}

const int N = 33;

int n, a[N];

int ask(int x) {
	if (x <= 2) return 32;
	//if (x <= 6) return 16;
	if (x <= 6) return 16;
	//if (x <= 14) return 8;
	if (x <= 15) return 8;
	// 30 ~ 31
	if (x <= 27) return 4;
	if (x <= 31) return 2;
	return 1;
}

int main() {
	int T; read(T);
	while (T--) {
		n = 32;
		for (int i = 1; i <= n; i++) read(a[i]);
		int p = 0, v = a[1];
		sort(a + 1, a + 1 + n);
		for (int i = 1; i <= n; i++) {
			if (v == a[i]) p = i;
		}
		printf("%d\n", ask(p));
	}
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3780kb

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: 3808kb

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:

32
32
16
16
16
16
8
8
8
8
8
8
8
8
8
4
4
4
4
4
4
4
4
4
4
4
4
2
2
2
2
1

result:

wrong answer 14th numbers differ - expected: '4', found: '8'