• CCPC L(水)


    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 on two 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

    Sample InputSample Output
    1
    2
    Case #1

    题解:半信半疑的2*N-1就过了,好水;

    代码:

     1 #include<stdio.h>
     2 int main(){
     3     int T,N,flot=0;
     4     scanf("%d",&T);
     5     while(T--){
     6         scanf("%d",&N);
     7         printf("Case #%d: %d
    ",++flot,2*N-1);
     8     }
     9     return 0;
    10 }
  • 相关阅读:
    TV
    [转载]如果看了这篇文章你还不懂傅里叶变换,那就过来掐死我吧
    search result
    floating-camera
    HDU 1032.The 3n + 1 problem【注意细节】【预计数据不强】【8月21】
    C语言socket send()数据缓存问题
    Marlin固件之—:基础入门与測试
    java语句顺序有时非常重要
    Android Studio 使用正式签名进行调试
    插入排序、交换排序、选择排序、归并排序、基数排序
  • 原文地址:https://www.cnblogs.com/handsomecui/p/4923011.html
Copyright © 2020-2023  润新知