2020年第十一届蓝桥杯 - 国赛 - Python大学组 - H.答疑
Posted Alex_996
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2020年第十一届蓝桥杯 - 国赛 - Python大学组 - H.答疑相关的知识,希望对你有一定的参考价值。
题目链接
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)
以上是关于2020年第十一届蓝桥杯 - 国赛 - Python大学组 - H.答疑的主要内容,如果未能解决你的问题,请参考以下文章
2020年第十一届蓝桥杯 - 国赛 - Java大学C组 - F.天干地支
2020年第十一届蓝桥杯 - 国赛 - Java大学C组 - F.天干地支
2020年第十一届蓝桥杯 - 国赛 - Python大学组 - G.重复字符串