记录编号 311816 评测结果 AAAAAAAAAA
题目名称 排序测试 最终得分 100
用户昵称 Gravataropen the window 是否通过 通过
代码语言 C++ 运行时间 4.897 s
提交时间 2016-09-25 11:49:43 内存使用 17.45 MiB
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
int a[5000001];
int n,i,j,ans;
int main()
{
	freopen("sorttest.in","r",stdin);
	freopen("sorttest.out","w",stdout);
	scanf("%d",&n);
	for (i=1; i<=n; ++i) scanf("%d",&a[i]);
    sort(a+1,a+n+1);
	for (i=1; i<=n; ++i) printf("%d ",a[i]);
	return 0;
}