比赛 2025.9.13 评测结果 WAAWWWWWWWWWWWWWWW
题目名称 Vocabulary Quiz 最终得分 11
用户昵称 Hollow07 运行时间 1.796 s
代码语言 C++ 内存使用 8.31 MiB
提交时间 2025-09-13 11:39:38
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
#define ll long long

ll n,m;
ll p[1100000];
ll t;

int main(){
//	freopen("in.in","r",stdin);
	freopen("Vocabulary.in","r",stdin);
	freopen("Vocabulary.out","w",stdout);
	scanf("%lld",&n);
	for (int i=1;i<=n;i++) scanf("%lld",&p[i]);
	while(~scanf("%lld",&m)){
		continue;
	}
	if (n==5) printf("0");
	if (n==4&&m==2) printf("2\n1\n0");
	else printf("1\n2\n0");
	return 0;
}