比赛 2024暑假C班集训D 评测结果 WWWWWWWWWW
题目名称 鹰蛋 最终得分 0
用户昵称 ht骨架 运行时间 0.048 s
代码语言 C++ 内存使用 3.34 MiB
提交时间 2024-07-13 10:36:13
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
int a, b, ans;
int main () {
    freopen ("eagleegg.in", "r", stdin);
    freopen ("eagleegg.out", "w", stdout);
    while (1) {
        ans = 0;
        cin >> a >> b;
        if (a == 0 && b == 0) {
            return 0;
        }
        while (1) {
            if (a > 1) {
                b /= 2;
                b++;
                ans++;
                if (b == 2) {
                    ans++;
                    break;
                }
                
            }
            else if (a == 1) {
                ans += b;
                break;
            }
        }
        cout << ans << endl;
    }
    return 0;
}
/*
19
18
17
16 3
15 2
14
13 2
12
11
10 1
9
8
7
6 1
5
4
3
2
1
0
*/