728x90
SMALL

using System;

public class Solution {
    public int solution(int M, int N) {
        return M*N-1;
    }
}

 

// 계산해보니까 자르는 숫자가 MN-1이다.

 

자바

 

 

class Solution {
    public int solution(int m, int n) {
        return m * n - 1;
    }
}
728x90

설정

트랙백

댓글