题解 | #合并表记录#

合并表记录

http://www.nowcoder.com/practice/de044e89123f4a7482bd2b214a685201

import collections
dic = collections.defaultdict(int)
n = int(input())
for _ in range(n):
index, val = list(map(int, input().split()))
dic[index] += val

for index, val in sorted(dic.items(), key = lambda x: x[0]): #需要根据key进行排序
print(index, val)

全部评论

相关推荐

点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务