Bear and Big Brother

简介: Bear and Big Brother

文章目录

一、Bear and Big Brother

总结


一、Bear and Big Brother

本题链接:Bear and Big Brother


题目:


A. Bear and Big Brother

time limit per test1 second

memory limit per test256 megabytes

inputstandard input

outputstandard output

Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob.


Right now, Limak and Bob weigh a and b respectively. It’s guaranteed that Limak’s weight is smaller than or equal to his brother’s weight.


Limak eats a lot and his weight is tripled after every year, while Bob’s weight is doubled after every year.


After how many full years will Limak become strictly larger (strictly heavier) than Bob?


Input

The only line of the input contains two integers a and b (1 ≤ a ≤ b ≤ 10) — the weight of Limak and the weight of Bob respectively.


Output

Print one integer, denoting the integer number of years after which Limak will become strictly larger than Bob.


Examples


input

4 7

output

2


input

4 9

output

3


input

1 1

output

1


Note

In the first sample, Limak weighs 4 and Bob weighs 7 initially. After one year their weights are 4·3 = 12 and 7·2 = 14 respectively (one weight is tripled while the other one is doubled). Limak isn’t larger than Bob yet. After the second year weights are 36 and 28, so the first weight is greater than the second one. Limak became larger than Bob after two years so you should print 2.


In the second sample, Limak’s and Bob’s weights in next years are: 12 and 18, then 36 and 36, and finally 108 and 72 (after three years). The answer is 3. Remember that Limak wants to be larger than Bob and he won’t be satisfied with equal weights.


In the third sample, Limak becomes larger than Bob after the first year. Their weights will be 3 and 2 then.


本博客给出本题截图:

image.png

image.png

题意两个数,一个数每次扩大3倍,另一个数每次扩大2倍,问第一个数什么时候比第二个数大

AC代码

#include <iostream>
using namespace std;
int main()
{
    int a, b, i;
    cin >> a >> b;
    for (i = 0; a <= b; i ++ )
        a *= 3, b *= 2;
    cout << i << endl;
    return 0;
}

总结

水题,不解释


目录
相关文章
|
6月前
|
人工智能 缓存 vr&ar
big.LITTLE&DynamIQ
big.LITTLE&DynamIQ
109 0
|
6月前
|
负载均衡 调度 Android开发
有关big.LITTLE,你需要知道的十件事情
有关big.LITTLE,你需要知道的十件事情
95 0
|
6月前
|
机器学习/深度学习 自然语言处理
[Big Bird]论文解读:Big Bird: Transformers for Longer Sequences
[Big Bird]论文解读:Big Bird: Transformers for Longer Sequences
62 1
|
6月前
|
人工智能
Big Water Problem
Big Water Problem
37 0
|
机器学习/深度学习 网络架构
PTA 1164-1167 Good in C/Block Reversing/Summit/Cartesian Tree(一)
PTA 1164-1167 Good in C/Block Reversing/Summit/Cartesian Tree
99 0
PTA 1164-1167 Good in C/Block Reversing/Summit/Cartesian Tree(一)
|
机器学习/深度学习 网络架构
PTA 1164-1167 Good in C/Block Reversing/Summit/Cartesian Tree(二)
PTA 1164-1167 Good in C/Block Reversing/Summit/Cartesian Tree
117 0
Google Earth Engine ——LANDSAT/LT04/C01/T1_32DAY_/8day/annual_BAI
Google Earth Engine ——LANDSAT/LT04/C01/T1_32DAY_/8day/annual_BAI
105 0
Google Earth Engine ——LANDSAT/LT04/C01/T1_32DAY_/8day/annual_BAI
Google Earth Engine ——Landsat 8 Annual BAI Composite
Google Earth Engine ——Landsat 8 Annual BAI Composite
90 0
Google Earth Engine ——Landsat 8 Annual BAI Composite
|
人工智能
Educational Codeforces Round 98 (Rated for Div. 2)B-Toy Blocks
You are asked to watch your nephew who likes to play with toy blocks in a strange way. He has n boxes and the i-th box has ai blocks. His game consists of two steps: he chooses an arbitrary box i; he tries to move all blocks from the i-th box to other boxes.
260 0