zoukankan      html  css  js  c++  java
  • Gym 100952 A. Who is the winner?

    A. Who is the winner?
    time limit per test
    1 second
    memory limit per test
    64 megabytes
    input
    standard input
    output
    standard output

    A big marathon is held on Al-Maza Road, Damascus. Runners came from all over the world to run all the way along the road in this big marathon day. The winner is the player who crosses the finish line first.

    The organizers write down finish line crossing time for each player. After the end of the marathon, they had a doubt between 2 possible winners named "Player1" and "Player2". They will give you the crossing time for those players and they want you to say who is the winner?

    Input

    First line contains number of test cases (1  ≤  T  ≤  100). Each of the next T lines represents one test case with 6 integers H1 M1 S1 H2 M2 S2. Where H1, M1, S1 represent Player1 crossing time (hours, minutes, seconds) and H2, M2, S2 represent Player2 crossing time (hours, minutes, seconds). You can assume that Player1 and Player2 crossing times are on the same day and they are represented in 24 hours format(0  ≤  H1,H2  ≤  23 and 0  ≤  M1,M2,S1,S2  ≤  59)

    H1, M1, S1, H2, M2 and S2 will be represented by exactly 2 digits (leading zeros if necessary).

    Output

    For each test case, you should print one line containing "Player1" if Player1 is the winner, "Player2" if Player2 is the winner or "Tie" if there is a tie.

    Examples
    Input
    3
    18 03 04 14 03 05
    09 45 33 12 03 01
    06 36 03 06 36 03
    Output
    Player2
    Player1
    Tie
    水题;
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <queue>
    #include <cmath>
    #include <vector>
    #include <set>
    #include <map>
    #include <algorithm>
    using namespace std;
    typedef long long ll;
    int main()
    {
        int a,b,c,x,y,z,n;
        cin>>n;
        while(n--)
        {
            cin>>a>>b>>c>>x>>y>>z;
            int ans=a*60*60+b*60+c;
            int pos=x*60*60+y*60+z;
            if(ans>pos) puts("Player2");
            else if(ans<pos) puts("Player1");
            else puts("Tie");
        }
    }
  • 相关阅读:
    数据结构-查找-有序查找
    发现新大陆 --21lic
    专利检索
    IT行业新闻事件
    流量校准仪开发日志-2017-10-24
    电池充电方案总结
    iOS中创建自定义的圆角按钮
    iOS 内存管理实践
    iOS 内存管理策略
    [置顶] 内存管理一点也不神秘————手绘iOS内存管理细节
  • 原文地址:https://www.cnblogs.com/shinianhuanniyijuhaojiubujian/p/7199094.html
Copyright © 2011-2022 走看看