比赛 |
noip2016普及练习2 |
评测结果 |
AAAAATTTTT |
题目名称 |
排序测试 |
最终得分 |
50 |
用户昵称 |
coo |
运行时间 |
12.013 s |
代码语言 |
C++ |
内存使用 |
7.15 MiB |
提交时间 |
2016-11-07 20:19:07 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
int m,n,k,f[2000008];
int main()
{
freopen("sorttest.in","r",stdin);
freopen("sorttest.out","w",stdout);
cin>>n;
for(int i=1;i<=n;i++)cin>>f[i];
sort(f+1,f+1+n);
for(int i=1;i<=n;i++)cout<<f[i]<<" ";
fclose(stdin);
fclose(stdout);
return 0;
}