mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
a4744a8c1c
5200-5299
21 lines
398 B
C++
21 lines
398 B
C++
#include <iostream>
|
|
#include <algorithm>
|
|
using namespace std;
|
|
int main()
|
|
{
|
|
int T,a,b;
|
|
cin>>T;
|
|
for(int k=1; k<=T; k++)
|
|
{
|
|
int sum,ans=0;
|
|
for(int i=2; i<=5; i++)
|
|
{
|
|
cin>>a>>b;
|
|
sum=2*i*(250-a)-50*b;
|
|
ans+=max(sum,(int)(0.4*i*500));
|
|
}
|
|
cout<<"Case #"<<k<<": "<<ans<<endl;
|
|
}
|
|
return 0;
|
|
}
|