791A - Bear and Big Brother

 

 문제

 형 Bob보다 커지길 원하는 곰 Limak.

 Limak은 매년 3배씩 커지고 Bob은 2배씩 커질 때 몇 년후에 Limak이 Bob보다 커지는가?


 INPUT 정수 a와 b (1 ≤ a ≤ b ≤10)

 OUTPUT Limak이 Bob 보다 커지는 정수 년도

 

 

 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import java.util.*;
 
public class BigBrother {
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        
        int a = sc.nextInt();
        int b = sc.nextInt();
        int count = 0;
        
        while(a <= b){
            a = a*3;
            b = b*2;
            count++;
        }
        
        System.out.println(count);
    }
}
 

 

 

 

 

 respectively 각자, 각각

+ Recent posts