首页
DreamJudge
院校信息
考研初试
考研复试
保研专区
讨论区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
曾不会
2026年2月5日 14:55
谁拿了最多奖学金 题解:
P1088
回复 0
|
赞 0
|
浏览 85
n=int(input()) t=dict() total=0 ma=0 sou='' for i in range(n): s=list(map(str,input().split())) name=s[0] qimo=int(s[1]) banji=int(s[2]) ganbu=s[3] xibu=s[4] lwen=int(s[5]) count=0 if(qimo>80 and lwen>0): count+=8000 ...
yanmy
2024年3月26日 12:00
不简洁
P1088
回复 0
|
赞 0
|
浏览 1.2k
#include <iostream> #include <vector> #include <algorithm> #include <string> using namespace std; struct Student { string name; int score; int class_score; string is_leader; string is_west; int paper_count; int reward; }; int ...
题目
谁拿了最多奖学金
题解数量
2
发布题解
在线答疑
热门题解
1
不简洁
2
谁拿了最多奖学金 题解: