比赛 NOIP模拟赛by mzx Day1 评测结果 TTTTTTTTTT
题目名称 昆特-冠位指定 最终得分 0
用户昵称 ‎MistyEye 运行时间 10.001 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-10-19 21:40:57
显示代码纯文本
#include <queue>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
typedef long long ll;
inline void read(int &x){
	x=0;char ch;bool flag = false;
	while(ch=getchar(),ch<'!');if(ch == '-') ch=getchar(),flag = true;
	while(x=10*x+ch-'0',ch=getchar(),ch>'!');if(flag) x=-x;
}
int main(){
	freopen("gwent_grandorder.in","r",stdin);
	freopen("gwent_grandorder.out","w",stdout);
	int a,b,c,d,e;
	read(a);read(b);read(c);read(d);read(e);
	if(a==5 && b==5 && c==1 && d==1 && e==1) printf("9\n");
	else printf("SingleDogMZX\n");
	//getchar();getchar();
	fclose(stdin);fclose(stdout);
	return 0;
}