解题思路:利用Python列表特性解题
注意事项:sort()的项是按tuple类型中的元素从前到后依次进行的
参考代码:
n = int(input())
lst = []
lst_sum = []
lst_index = [i + 1 for i in range(n)]
for i in range(n) :
lst.append(list(map(int, input().split())))
lst_sum.append(sum(lst[i]))
lst = list(zip(lst_sum, lst))
for i in range(n) :
lst[i] = list(lst[i])
lst[i].append(lst_index[i])
for i in range(n) :
lst[i] = tuple(lst[i])
lst.sort(reverse=True)
lst = lst[:5]
for i in range(5) :
if i <= 3 :
if lst[i][0] == lst[i + 1][0] and lst[i][1][0] == lst[i + 1][1][0] and lst[i][2] > lst[i+1][2]:
lst[i], lst[i + 1] = lst[i + 1], lst[i]
print('{} {}'.format(lst[i][2], lst[i][0]))
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:949 |
校门外的树 (C语言代码)浏览:988 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:956 |
数对 (C语言代码)浏览:762 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:513 |
1124题解浏览:630 |
【计算直线的交点数】 (C语言代码)浏览:984 |
小O的乘积 (C语言代码)浏览:1062 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:841 |
C语言程序设计教程(第三版)课后习题6.6 (C语言代码)浏览:584 |