ZOJ 3776 Pokemon Master

来源:互联网 发布:虚拟社交网络的优点 编辑:程序博客网 时间:2024/06/05 03:01
A - Pokemon Master
Time Limit:2000MS    Memory Limit:65536KB    64bit IO Format:%lld & %llu
SubmitStatusPracticeZOJ 3776

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 <= N, M <= 6), which describes that Calem has N pokemons andSerena has M pokemons.

The second line contains N integers indicating the weight of Calem's pokemons. The third line containsM 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" ifSerena'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


签到题。水题。

#include <stdio.h>int main(){    int t;    scanf("%d",&t);    while(t--)    {        int n,m;        scanf("%d%d",&n,&m);        int sum1=0,sum2=0;        while(n--)        {            int temp;            scanf("%d",&temp);            sum1+=temp;        }        while(m--)        {            int temp;            scanf("%d",&temp);            sum2+=temp;        }        if(sum1>sum2)            printf("Calem\n");        else if(sum1<sum2)            printf("Serena\n");        else            printf("Draw\n");    }    return 0;}


0 0
原创粉丝点击