ZOJ 3776 Pokemon Master

来源:互联网 发布:牧草大数据 编辑:程序博客网 时间:2024/06/14 06:52

Description

Calem and Serena are pokemon masters. One day they decided to have a pokemon battle practice before Pokemon World Championships. Each of them has some pokemons in each's team. To make the battle more interesting, they decided to use a special rule to determine the winner: the team with heavier total weight will win the battle!

Input

There are multiple test cases. The first line of input contains an integer T indicating the number of test cases. For each test case:

The first line contains two integers N and M (1 <= NM <= 6), which describes that Calem has N pokemons and Serena has M pokemons.

The second line contains N integers indicating the weight of Calem's pokemons. The third line contains M integers indicating the weight of Serena's pokemons. All pokemons' weight are in the range of [1, 2094] pounds.

Output

For each test case, output "Calem" if Calem's team will win the battle, or "Serena" if Serena's team will win. If the two team have the same total weight, output "Draw" instead.

Sample Input

16 613 220 199 188 269 1014101 176 130 220 881 396

Sample Output

Serena
这是简单的A+B的问题:
#include <iostream>using namespace std;int main(){    int t,sum1,sum2;    cin>>t;    while(t--)    {        int n,m;        cin>>n>>m;        sum1=sum2=0;        for(int i=0; i<n; i++)        {            int a;            cin>>a;            sum1+=a;        }        for(int i=0; i<m; i++)        {            int b;            cin>>b;            sum2+=b;        }        if(sum1>sum2)  cout<<"Calem"<<endl;        else if(sum1<sum2)cout<<"Serena"<<endl;        else cout<<"Draw"<<endl;    }    return 0;}


0 0