题解 | #HJ68 成绩排序#

成绩排序

http://www.nowcoder.com/practice/8e400fd9905747e4acc2aeed7240978b

Python版本

n = int(input())
order_mode = int(input())

status_list = []
for i in range(n):
    name, score = input().strip().split()
    score = int(score)
    status_list.append((i, name, score))

if order_mode == 0:
    key_func = lambda x: (-x[2], x[0])
elif order_mode == 1:
    key_func = lambda x: (x[2], x[0])

status_list.sort(key=key_func)

for status in status_list:
    print(status[1], status[2])
全部评论

相关推荐

06-26 22:20
门头沟学院 Java
码农索隆:让你把简历发给她,她说一些套话,然后让你加一个人,说这个人给你改简历,然后开始卖课
我的求职精神状态
点赞 评论 收藏
分享
评论
2
1
分享

创作者周榜

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