zoukankan      html  css  js  c++  java
  • 2013暑假集训B组训练赛第二场

    A - Bus Game
    Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

    Description

    After Fox Ciel won an onsite round of a programming contest, she took a bus to return to her castle. The fee of the bus was 220 yen. She met Rabbit Hanako in the bus. They decided to play the following game because they got bored in the bus.

    • Initially, there is a pile that contains x 100-yen coins and y 10-yen coins.
    • They take turns alternatively. Ciel takes the first turn.
    • In each turn, they must take exactly 220 yen from the pile. In Ciel's turn, if there are multiple ways to take 220 yen, she will choose the way that contains the maximal number of 100-yen coins. In Hanako's turn, if there are multiple ways to take 220 yen, she will choose the way that contains the maximal number of 10-yen coins.
    • If Ciel or Hanako can't take exactly 220 yen from the pile, she loses.

    Determine the winner of the game.

    Input

    The first line contains two integers x (0 ≤ x ≤ 106) and y (0 ≤ y ≤ 106), separated by a single space.

    Output

    If Ciel wins, print "Ciel". Otherwise, print "Hanako".

    Sample Input

    Input
    2 2
    Output
    Ciel
    Input
    3 22
    Output
    Hanako



    很简单的循环,判断
    #include <cstdio>
    
    int x, y;
    
    int main()
    {
        while(~scanf("%d%d",&x,&y))
        {
            while(x >= 0&& y>=0)
            {
                if(x>=2 && y >= 2)
                {
                    x -= 2;
                    y -= 2;
                }
                else if(x==1 && y >= 12)
                {
                    x -= 1;
                    y -= 12;
                }
                else if(x== 0 && y>=22)
                {
                    y -= 22;
                }
                else
                {
                    puts("Ciel");
                    break;
    
                }
    
    
                if(y>=22)
                {
                    y -= 22;
                }
                else if(y>=12 && x >=1)
                {
                    x -= 1;
                    y -= 12;
                }
                else if(x>= 2 && y >=2)
                {
                    x -= 2;
                    y -= 2;
                }
                else
                {
                    puts("Hanako");
                    break;
    
                }
            }
        }
    
    }


  • 相关阅读:
    我该不该学习C语言
    Java入门系列-27-反射
    Java入门系列-26-JDBC
    Java入门系列-25-NIO(实现非阻塞网络通信)
    Java入门系列-24-实现网络通信
    Java入门系列-23-NIO(使用缓冲区和通道对文件操作)
    Java入门系列-22-IO流
    Java入门系列-21-多线程
    Java入门系列-20-异常
    Java入门系列-19-泛型集合
  • 原文地址:https://www.cnblogs.com/wejex/p/3219317.html
Copyright © 2011-2022 走看看