比赛 |
NOIP模拟赛by mzx Day1 |
评测结果 |
WWWWWWWWWW |
题目名称 |
昆特-冠位指定 |
最终得分 |
0 |
用户昵称 |
宋逸群 |
运行时间 |
0.017 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-10-19 21:30:17 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<ctime>
#include<cmath>
#include<algorithm>
using namespace std;
inline int read()
{
int x=0,f=1; char ch=getchar();
while(!isdigit(ch)) {if(ch=='-') f=-1; ch=getchar();}
while(isdigit(ch)) {x=x*10+ch-'0'; ch=getchar();}
return x*f;
}
int main()
{
freopen("gwent_grandorder.in","r",stdin);
freopen("gwent_grandorder.out","w",stdout);
printf("SingleDogMZX\n");
return 0;
}