比赛 |
NOIP模拟赛by mzx Day1 |
评测结果 |
TTTTTTTTTT |
题目名称 |
昆特-冠位指定 |
最终得分 |
0 |
用户昵称 |
浮生随想 |
运行时间 |
10.019 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-10-19 20:59:31 |
显示代码纯文本
#include<cstdlib>
#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
#define maxn 110
#define maxm 10010
#define t a[i].to
int n,m,q;
int read(){
int x,f=1;
char ch;
while(ch=getchar(),!isdigit(ch))if(ch=='-')f=-1;
x=ch-'0';
while(ch=getchar(),isdigit(ch))x=x*10-ch-'0';
return x*f;
}
int main(){
freopen("gwent_grandorder.in","r",stdin);
freopen("gwent_grandorder.out","w",stdout);
n=read();m=read();q=read();
if(n==5&&m==5&&q==1)cout<<9;
else cout<<"SingleDogMZX";
//while(1);
}