当前位置 : 主页 > 编程语言 > python >

2020年第十一届蓝桥杯 - 国赛 - Python大学组 - H.答疑

来源:互联网 收集:自由互联 发布时间:2022-06-18
​​题目 链接 ​​ Ideas 2020年第十一届蓝桥杯 - 国赛 - Python大学组 - H.答疑 Code Python if __name__ == '__main__' : n = int ( input ()) student_time_list = [] for _ in range ( n ): student_time_list . append ( list (


​​题目链接​​

Ideas


2020年第十一届蓝桥杯 - 国赛 - Python大学组 - H.答疑


Code

Python

if __name__ == '__main__':
n = int(input())
student_time_list = []
for _ in range(n):
student_time_list.append(list(map(int, input().split())))

ans = 0
student_time_list.sort(key=lambda x: sum(x))
for i in range(n):
ans += (n - i) * sum(student_time_list[i])
ans -= student_time_list[i][-1]
print(ans)



上一篇:LeetCode Algorithm 797. 所有可能的路径
下一篇:没有了
网友评论