프로그래머스 120816 피자 나눠 먹기 (3)

Jmnote (토론 | 기여)님의 2023년 12월 1일 (금) 21:06 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

프로그래머스 120816 피자 나눠 먹기 (3)

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(int slice, int n) {
    return (n+slice-1)/slice;
}
#include <string>
#include <vector>

using namespace std;

int solution(int slice, int n) {
    return n/slice+(n%slice>0);
}

3 같이 보기[ | ]