比赛 |
noip2016普及练习2 |
评测结果 |
AAAAAAAAAA |
题目名称 |
排序测试 |
最终得分 |
100 |
用户昵称 |
jjky |
运行时间 |
7.262 s |
代码语言 |
C++ |
内存使用 |
7.15 MiB |
提交时间 |
2016-11-07 19:50:49 |
显示代码纯文本
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<map>
#include<queue>
#include<vector>
using namespace std;
const int maxn=2000010;
int n,a[maxn];
int read()
{
int x=0,t=1;
char ch;
ch=getchar();
while(ch<'0'||ch>'9')
{
if(ch=='-')
t=-1;
ch=getchar();
}
while(ch>='0'&&ch<='9')
{
x=x*10+ch-'0';
ch=getchar();
}
return x*t;
}
int main()
{
freopen("sorttest.in","r",stdin);
freopen("sorttest.out","w",stdout);
n=read();
for(int i=1;i<=n;i++)
a[i]=read();
sort(a+1,a+n+1);
for(int i=1;i<=n;i++)
printf("%d ",a[i]);
return 0;
}