比赛 |
NOIP模拟赛by mzx Day1 |
评测结果 |
WWWWWWWWWW |
题目名称 |
昆特-冠位指定 |
最终得分 |
0 |
用户昵称 |
NVIDIA |
运行时间 |
0.023 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-10-19 22:00:00 |
显示代码纯文本
#include<cstdlib>
#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
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";
}