记录编号 | 420329 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [UVa 11462] 年龄排序 | 最终得分 | 100 | ||
用户昵称 | Regnig Etalsnart | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 2.335 s | ||
提交时间 | 2017-07-04 16:16:05 | 内存使用 | 0.19 MiB | ||
#include<cstdio> #include<iostream> #include<algorithm> using namespace std; int n,a[121],i; int Main() { freopen("AgeSort.in","r",stdin);freopen("AgeSort.out","w",stdout); while(scanf("%d",&n)==1)a[n]++; for(i=0;i<=120;i++)while(a[i]--)printf("%d ",i); return 0; } int main(){;} int syy=Main();