记录编号 293535 评测结果 MMMMMMMMMM
题目名称 [UVa 11462] 年龄排序 最终得分 0
用户昵称 GravatarAntiLeaf 是否通过 未通过
代码语言 C++ 运行时间 0.000 s
提交时间 2016-08-10 19:41:22 内存使用 2.00 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
namespace mine{
	inline int getint(){
		static int __c,__x;
		static bool __neg;
		__x=0;
		__neg=false;
		do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
		if(__c==EOF)return -1;
		if(__c=='-'){
			__neg=true;
			__c=getchar();
		}
		for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
		if(__neg)return -__x;
		return __x;
	}
	inline void putint(int __x){
		static int __a[40],__i,__j;
		static bool __neg;
		__neg=__x<0;
		if(__neg)__x=-__x;
		__i=0;
		do{
			__a[__i++]=__x%10+48;
			__x/=10;
		}while(__x);
		if(__neg)putchar('-');
		for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
	}
}
using namespace mine;
int a[130]={0},n;
inline int MAIN(){
	freopen("AgeSort.in","r",stdin);
	freopen("AgeSort.out","w",stdout);
	while(~(n=getint()))a[n]++;
	for(int i=0;i<130;i++)while(a[i]){
		putint(i);
		putchar(' ');
		a[i]--;
	}
	return 0;
}
int hzoier=MAIN();
int main(){;}