记录编号 | 224062 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [UVa 11462] 年龄排序 | 最终得分 | 100 | ||
用户昵称 | 沉迷学习的假的Keller | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 2.348 s | ||
提交时间 | 2016-02-15 13:40:18 | 内存使用 | 0.31 MiB | ||
#include<cstdio> #include<iostream> #include<algorithm> using namespace std; int a[130]; int main(){ freopen("AgeSort.in","r",stdin); freopen("AgeSort.out","w",stdout); int p; while(scanf("%d",&p)!=EOF){ a[p]++; } for(int i=0;i<=120;i++){ for(int j=1;j<=a[i];j++){ printf("%d ",i); } } return 0; }