zoukankan      html  css  js  c++  java
  • Huatuo's Medicine

    Huatuo's Medicine

    Time Limit: 3000/1000MS (Java/Others)     Memory Limit: 65535/65535KB (Java/Others)

    Huatuo was a famous doctor. He use identical bottles to carry the medicine. There are different types of medicine. Huatuo put medicines into the bottles and chain these bottles together.

    However, there was a critical problem. When Huatuo arrived the patient's home, he took the chain out of his bag, and he could not recognize which bottle contains which type of medicine,but he remembers the order of the bottles on the chain.

    Huatuo has his own solution to resolve this problem. When he need to bring 2 types of medicines, E.g. A and B, he will put A into one bottle and put B into two bottles.Then he will chain the bottles in the order of -B-A-B-. In this way, when he arrived the patient's home, he knew that the bottle in the middle is medicine A and the bottle ontwo sides are medicine B.

    Now you need to help Huatuo to work out what's the minimal number of bottles needed if he want to bring N types of medicine.

    Input

    The first line of the input gives the number of test cases, T(1T100). T lines follow. Each line consist of one integer N(1N100),the number of types of the medicine.

    Output

    For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the minimal number of bottles Huatuo needed.

    Sample input and output



    #include<stdio.h>
    int main()
    {
    	long long n,t,Case=1;
    	scanf("%lld",&t);
    	while(t--)
    	{
    		scanf("%lld",&n);
    		printf("Case #%lld: %lld
    ",Case++,2*(n-1)+1);
    	}
    	return 0;
    }


    Sample Input Sample Output
    1
    2
    Case #1: 3
    
    
  • 相关阅读:
    react typescript 子组件调用父组件
    Mongodb query查询
    CentOS虚拟机不能联网状况下yum方式从本地安装软件包(转载的)
    CentOS6.5 mini开启网络
    MySQL的InnoDB表如何设计主键索引-转自淘宝MySQL经典案例
    linux下安装mysql-community后起不来
    Eclipse 快捷键
    maven下载jta失败,自己本地安装jta库
    spring配置文件中id与name
    @autowired和@resource的区别
  • 原文地址:https://www.cnblogs.com/playboy307/p/5273762.html
Copyright © 2011-2022 走看看