문제풀이
#include <string> #include <vector> using namespace std; int solution(int hp) { int answer = 0; answer+=(hp/5); hp%=5; answer+=(hp/3); hp%=3; answer+=hp; return answer; }
처음에 if-else문으로 분기를 나눠서 하는걸로 생각했지만 굳이 그렇게 할 필요가 없었다.