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

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 같이 보기[ | ]