복기해당 문제가 그리디로 풀었을 때 정당성을 가지는 이유는 가지고 있는 거스름돈의 큰 단위가 항상 작은 단위의 배수기 때문이다. 코드C++ 17 #include int M;int Rests[] = { 500, 100, 50, 10, 5, 1 }; int main(){ scanf("%d", &M); int target = 1000 - M; int ans = 0; for (int i = 0; i < 6; ++i) { ans += target / Rests[i]; target %= Rests[i]; } printf("%d\n", ans);} C# 6.0 using System; namespace Csharp{ class Program { static readonly int TARO_MONEY = 1000; s..