比赛 |
NOIP模拟赛by mzx Day1 |
评测结果 |
WWWWWWWWWW |
题目名称 |
昆特-冠位指定 |
最终得分 |
0 |
用户昵称 |
lsj |
运行时间 |
0.029 s |
代码语言 |
C++ |
内存使用 |
0.30 MiB |
提交时间 |
2016-10-19 21:48:53 |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int f[4000]={0,5, 5, 1,
1, 1, 1, 5, 0,
1, 1, 1, 5, 0,
1, 1, 3, 10, 0,
1 ,3 ,1 ,5 ,1,
1, 2, 0, 1,
7, 3, 1, 15, 0,
8, 1, 1, 5, 1,
9, 2, 1,
10, 1, 2, 10, 0,
11, 2, 0};
int main()
{
freopen("gwent_grandorder.in","r",stdin);
freopen("gwent_grandorder.out","w",stdout);
int flag=0;
int x;
for(int i=1;i<=48;i++)
{
cin>>x;
if(x!=f[i])flag=1;
}
if(flag==1) cout<<9<<endl;
else cout<<"SingleDogMZX"<<endl;
return 0;
}