记录编号 |
38530 |
评测结果 |
AAAAAAA |
题目名称 |
昵称 |
最终得分 |
100 |
用户昵称 |
Makazeu |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.076 s |
提交时间 |
2012-04-20 13:35:08 |
内存使用 |
0.27 MiB |
显示代码纯文本
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <iostream>
#include <cctype>
#include <map>
using namespace std;
map<string,int> hash;
int T,N;
string str;
int main()
{
freopen("nickname.in","r",stdin);
freopen("nickname.out","w",stdout);
std::ios::sync_with_stdio(false);
cin>>T;
map<string,int>::iterator iter;
for(int i=1;i<=T;i++)
{
cin>>N;
for(int j=1;j<=N;j++)
{
cin>>str;
for(unsigned int i=0;i<str.length();i++) str[i]=tolower(str[i]);
hash[str]++;
}
iter=hash.begin();
for(;iter!=hash.end();iter++) printf("%s %d\n",iter->first.data(),iter->second);
hash.clear(); printf("\n");
}
return 0;
}