p5740专题

洛谷P5740 最厉害的学生 题解

#题外话(第38篇题解)(本题为普及-难度) #先看题目 题目链接https://www.luogu.com.cn/problem/P5740#思路(这题看上去很简单,实际一点也不难,string套string就可以解决名字问题,后面就很简单了) #代码(可以严禁抄袭) #include <bits/stdc++.h>using namespace std;string s[100

洛谷_P5740【深基7.例9】最厉害的学生_python写法

这道题涉及了如何一行以空格隔开的形式输入字符串和数字以及自定义排序规则。 import functoolsn = int(input())result = []for i in range(n):parts = input().split(' ')name = parts[0]yw = int(parts[1])sx = int(parts[2])yy = int(parts[3