记录编号 86204 评测结果 AAAAAAAAAA
题目名称 [UVa 11462] 年龄排序 最终得分 100
用户昵称 Gravatarwolf 是否通过 通过
代码语言 C++ 运行时间 2.368 s
提交时间 2014-01-22 14:31:31 内存使用 0.31 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<ctime>
using namespace std;
int main(){
	FILE *open;
	open=fopen("AgeSort.in","r");
	FILE *out;
	out=fopen("AgeSort.out","w");
	int in,m;
	int age[121]={0};
	//freopen("AgeSort.in","r",stdin);
	//freopen("AgeSort.out","w",stdout);
	while((m=fscanf(open,"%d",&in))==1)
		++age[in];
	for(int i=0;i!=121;++i){
		m=age[i];
		for(int q=0;q!=m;++q){
			fprintf(out,"%d ",i);
		}
	}
	cout<<clock();
	return 0;
}
//designed by wolf