프로그래머스 Lv.0 피자 나눠 먹기 (3)
개발자가 되기까지 (2023.08.16~2024.04.15)/[Algorithm] Programmers ver.Java2023. 12. 23. 20:43프로그래머스 Lv.0 피자 나눠 먹기 (3)

class Solution { public int solution(int slice, int n) { int answer = (int) Math.ceil( (double) n / slice); return answer; } }

728x90
반응형
image