Dev.baelanche

[백준 1188] 음식 평론가 본문

Data Structure & Algorithm/PS - JAVA

[백준 1188] 음식 평론가

baelanche 2019. 4. 15. 20:11
반응형

 

 

경우를 나열해보면 평론가수 - (소시지 수와 평론가수의 최대공약수) 를 유추할 수 있다.

 

 

public class Main {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        int m = sc.nextInt();
        
        System.out.println(m - gcd(n, m));
        sc.close();
    }
    
    public static int gcd(int x, int y) {
        while(y != 0) {
            int tmp = y;
            y = x%y;
            x = tmp;
        }
        return x;
    }
    
}
반응형

'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글

[백준 1932] 정수 삼각형  (0) 2019.04.15
[백준 1149] RGB거리  (0) 2019.04.15
[백준 10824] 네 수  (0) 2019.04.13
[백준 2033] 반올림  (0) 2019.04.12
[백준 2909] 캔디 구매  (0) 2019.04.12
Comments