Search

주사위의 개수

태그
코딩테스트 입문
class Solution { public int solution(int[] box, int n) { return (box[0] / n) * (box[1] / n) * (box[2] / n); } }
Java
복사