记录编号 |
38532 |
评测结果 |
AAAAAAA |
题目名称 |
昵称 |
最终得分 |
100 |
用户昵称 |
kaaala |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.270 s |
提交时间 |
2012-04-20 13:52:54 |
内存使用 |
0.27 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<algorithm>
#include<string>
#include<map>
using namespace std;
map<string,int>tree;
map<string,int>::iterator it;
int N,Q;
int main()
{
freopen("nickname.in","r",stdin);
freopen("nickname.out","w",stdout);
std::ios::sync_with_stdio(false);
cin>>Q;
while(Q--)
{
cin>>N;
for(int i=1;i<=N;i++)
{
string str;
cin>>str;
for(int j=0;j<str.length();j++)
str[j]=tolower(str[j]);
tree[str]++;
}
for(it=tree.begin();it!=tree.end();it++)
cout<<it->first<<' '<<it->second<<endl;
tree.clear();
}
return 0;
}