比赛 NOIP2015普及组练习 评测结果 AAAAAAAAAA
题目名称 谁拿了最多奖学金 最终得分 100
用户昵称 Ceres 运行时间 0.005 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2015-11-05 19:21:06
显示代码纯文本
#include <fstream>
#include <string>
using namespace std;
int n,pj,py,lv,m=0,all=0;
char gb,xb;
string ne,mne;
ifstream ci("scholar.in");
ofstream co("scholar.out");
int main()
{
	ci>>n;
	for(int i=1;i<=n;i++)
	{
		int money=0;
		ci>>ne>>pj>>py>>gb>>xb>>lv;
		if(pj>80 && lv>=1)
			money+=8000;
		if(pj>85 && py>80)
			money+=4000;
		if(pj>90)
			money+=2000;
		if(pj>85 && xb=='Y')
			money+=1000;
		if(py>80 && gb=='Y')
			money+=850;
		all+=money;
		if(money>m)
		{
			m=money;
			mne=ne;
		}
	}
	co<<mne<<' '<<m<<' '<<all;
	ci.close();
	co.close();
	return 0;
}