Create 4931.cpp

pull/14/head
Kirigaya Kazuto 2016-05-08 20:46:55 +08:00
parent f33d8871be
commit 486660463d
1 changed files with 31 additions and 0 deletions

31
HDOJ/4931.cpp Normal file
View File

@ -0,0 +1,31 @@
#include <bits/stdc++.h>
using namespace std;
int main()
{
int t;
scanf("%d",&t);
while(t--)
{
vector<int> vec;
int s;
for(int i=0; i<6; i++)
{
scanf("%d",&s);
vec.push_back(s);
}
sort(vec.begin(),vec.end());
int sum1=vec.at(5)+vec.at(4);
int sum2=vec.at(1)+vec.at(2)+vec.at(3);
if(sum1>sum2)
{
printf("Grandpa Shawn is the Winner!\n");
}
else
{
printf("What a sad story!\n");
}
}
return 0;
}