记录编号 |
130852 |
评测结果 |
AAAAAAAAAW |
题目名称 |
Hardwood Species |
最终得分 |
90 |
用户昵称 |
水中音 |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
2.308 s |
提交时间 |
2014-10-23 14:29:06 |
内存使用 |
3.43 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<map>
using namespace std;
string s;
int n=0;
float k;
map<string,int> A;
map<string,int>::iterator B;
int main()
{
freopen("pojtj.in","r",stdin);
freopen("pojtj.out","w",stdout);
while(getline(cin,s)) n++,A[s]++;
for(B=A.begin();B!=A.end();B++)
{
cout<<(*B).first<<' ';
k=(float)(*B).second*100/n;
printf("%.4f\n",k);
}
return 0;
}