码迷,mamicode.com
首页 > 其他好文 > 详细

FZU 2147 A-B Game

时间:2016-04-30 16:55:32      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

我们只需要知道这个取完模最大是 a / 2 + 1就可以了,不过超时了几次,换了visual C++才过,oj还真是傲娇啊.

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int main()
{
    int t;
    long long a,b;
    int ca = 0;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%lld %lld",&a,&b);
        int tot = 0;
        while(a > b)
        {
            a = a/2 + 1;
            tot++;
        }
        printf("Case %d: %d\n",++ca,tot);
    }
    return 0;
}

 

FZU 2147 A-B Game

标签:

原文地址:http://www.cnblogs.com/jifahu/p/5448822.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!