题解 | #合并表记录#
合并表记录
https://www.nowcoder.com/practice/de044e89123f4a7482bd2b214a685201
n = int(input()) d1 = {} l_key = [] for i in range(n): iv = input().split(' ') index = int(iv[0]) value = int(iv[1]) if index in d1.keys(): d1[index] += value else: d1 |= {index:value} l_key = list(d1.keys()) l_key.sort() for index in l_key: print(str(index)+' '+str(d1[index]))