Bear and Big Brother
文章目錄
- 一、Bear and Big Brother
- 總結(jié)
一、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.
本博客給出本題截圖:
題意:兩個(gè)數(shù),一個(gè)數(shù)每次擴(kuò)大3倍,另一個(gè)數(shù)每次擴(kuò)大2倍,問(wèn)第一個(gè)數(shù)什么時(shí)候比第二個(gè)數(shù)大
AC代碼
總結(jié)
水題,不解釋
總結(jié)
以上是生活随笔為你收集整理的Bear and Big Brother的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: css3发光字体
- 下一篇: 快速傅里叶变换 java_二维快速傅里叶