记录编号 229347 评测结果 AAAAAAAAAA
题目名称 NBA总冠军 最终得分 100
用户昵称 Gravatarliu_runda 是否通过 通过
代码语言 C++ 运行时间 0.021 s
提交时间 2016-02-20 08:44:14 内存使用 0.25 MiB
显示代码纯文本
#include<cstdio>
#include<string>
using namespace std;
string nba[3000];
char buf[50];
string tmp;
void read(){
	int year;char ch;
	tmp.erase();
	while(ch=getchar(),!isalpha(ch));
	tmp+=ch;
	while(ch=getchar(),!isdigit(ch))tmp+=ch;
	tmp.erase(tmp.size()-1);
	year=ch-48;
	while(ch=getchar(),isdigit(ch))year=year*10+ch-48;
	nba[year]= tmp;
}
int main(){
	freopen("nba.in","r",stdin);
	freopen("nba.out","w",stdout);
	int n;scanf("%d",&n);
	while(n--){
		read();
	}
	for(int i=1947;i<=2009;++i){
		if(!nba[i].empty())printf("%d %s\n",i,nba[i].c_str());
	}
	fclose(stdin);fclose(stdout);
	return 0;
}