前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Codeforces 791A Bear and Big Brother(暴力枚举,模拟)

Codeforces 791A Bear and Big Brother(暴力枚举,模拟)

作者头像
Angel_Kitty
发布2018-04-08 15:27:36
1.3K0
发布2018-04-08 15:27:36
举报

A. Bear and Big Brother

time limit per test:1 second

memory limit per test:256 megabytes

input:standard input

output:standard 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

代码语言:javascript
复制
4 7

Output

代码语言:javascript
复制
2

Input

代码语言:javascript
复制
4 9

Output

代码语言:javascript
复制
3

Input

代码语言:javascript
复制
1 1

Output

代码语言:javascript
复制
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.

分析:给你两个数字a和b; a每次乘3,b每次乘2,问你什么时候a第一次大于b!

题目链接:http://codeforces.com/contest/791/problem/A

下面给出AC代码:

代码语言:javascript
复制
 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 int main()
 4 {
 5     int a,b,i;
 6     int c,d;
 7     while(scanf("%d%d",&a,&b)!=EOF)
 8     {
 9         int ans=0;
10         if(a-b>0)
11             printf("0\n");
12             else if(a-b==0)
13                 printf("1\n");
14         while(a-b<0)
15         {
16             ans++;
17             a*=3;
18             b*=2;
19             if(a-b>0)
20             {
21                 printf("%d\n",ans);
22                 break;
23             }
24             else if(a-b==0)
25             {
26                 printf("%d\n",ans+1);
27                 break;
28             }
29         }
30     }
31     return 0;
32 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017-03-21 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档