iT邦幫忙

2023 iThome 鐵人賽

DAY 25
0
自我挑戰組

CPE 49題訓練系列 第 25

YKL44.UVA10226 Hardwood species

  • 分享至 

  • xImage
  •  

Hardwood species

T=input()
space=input()
for t in range(int(T)):
	if t>0:
		print()
	arr=[]
	c=0
	while 1:
		try:
			a=input()
			if a!='':
				arr.append(a)
				c+=1
			else:
				break
		except:
			break
	dic={}
	for i in arr:
		if i not in dic:
			dic[i]=1
		else:
			dic[i]+=1
	ans=sorted(dic.items(),key=lambda x:x[1],reverse=1)
	ans=sorted(ans,key=lambda x:x[0])
	for x,y in ans:
		print('{} {:.4f}'.format(x,y/c*100)) 

上一篇
YKL23.UVA10062 Tell me the frequencies!
下一篇
YKL24.UVA10189 Minesweeper
系列文
CPE 49題訓練30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言