Accepted
[Hydro](https://hydro.ac)提供评测服务
代码
#include<iostream>
using namespace std;
int main()
{
string a,g;
int b,c,f,n,money=0,result=0,sum=0;
char d,e;
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>a>>b>>c>>d>>e>>f;
money=0;
if(b>80&&f>=1)
money+=8000;
if(b>85&&c>80)
money+=4000;
if(b>90)
money+=2000;
if(b>85&&e=='Y')
money+=1000;
if(c>80&&d=='Y')
money+=850;
sum+=money;
if(result<money)
{
result=money;
g=a;
}
}
cout<<g<<endl<<result<<endl<<sum<<endl;
return 0;
}
信息
- 递交者
- 类型
- 递交
- 题目
- P1000 谁拿了最多奖学金
- 题目数据
- 下载
- 语言
- C++
- 递交时间
- 2020-07-23 17:15:45
- 评测时间
- 2023-09-05 13:30:24
- 评测机
- 分数
- 100
- 总耗时
- 41ms
- 峰值内存
- 412.0 KiB