比赛 |
noip2016普及练习2 |
评测结果 |
AAAAAAAAEE |
题目名称 |
排序测试 |
最终得分 |
80 |
用户昵称 |
Lethur |
运行时间 |
5.678 s |
代码语言 |
C++ |
内存使用 |
6.36 MiB |
提交时间 |
2016-11-07 19:18:00 |
显示代码纯文本
#include<cstdio>
#include<algorithm>
#include<iostream>
#define MAXN 2000005
using namespace std;
int n;
int N[MAXN]={0};
inline int getint()
{
int x=0;
int f=1;
char ch=getchar();
while((ch<'0'||ch>'9')&&ch!='-')ch=getchar();
if(ch=='-')ch=getchar(),f=-1;
while(ch>='0'&&ch<='9')x=10*x+ch-'0',ch=getchar();
return x*=f;
}
int main()
{
freopen("sorttest.in","r",stdin);
freopen("sorttest.out","w",stdout);
n=getint();
for(int i=1;i<=n;i++)
{
N[i]=getint();
}
sort(N+1,N+1+n);
for(int i=1;i<=n;i++)
{
printf("%d ",N[i]);
}
printf("\n");
return 0;
}