比赛 2025.9.13 评测结果 AAWWWWWWWWWWWWWWWW
题目名称 Vocabulary Quiz 最终得分 11
用户昵称 对立猫猫对立 运行时间 0.052 s
代码语言 C++ 内存使用 3.69 MiB
提交时间 2025-09-13 11:33:48
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
	freopen("Vocabulary.in", "r", stdin);
	freopen("Vocabulary.out", "w", stdout);
	int a, b, c;
	cin >> a >> b >> c;
	if(a == 5 && b == 0 && c == 1) {
		cout << 0 << endl;
	}
	else {
		cout << 2 << endl;
		cout << 1 << endl;
		cout << 0 << endl;
	}
	return 0;
}