#39. [백준_C언어] 2839 : 설탕 배달
입력 코드 #include int main() { int input; int count = 0; scanf("%d", &input); while (input > 0) { if (input % 5 == 0) { input -= 5; count++; } else if (input % 3 == 0) { input -= 3; count++; } else if (input > 5) { input -= 5; count++; } else { count = -1; break; } } printf("%d", count); } 코드 설명 #조건문 #수학 #그리디 알고리즘 #다이나믹 프로그래밍 ↓↓↓ 참고한 사이트 medium.com/wasd/%EB%B0%B1%EC%A4%80-c-%EC%95%8C%EA%B3%A0%EB%A6..