본문 바로가기
코딩테스트 준비/백준 C#

백준 C# - 2720

by 코딩하는 돼징 2023. 5. 29.
반응형
using System;
using System.Collections.Generic;
using System.Text;
namespace baek2
{
   class Program
    {
        static void Main(string[] args)
        {
            int m = int.Parse(Console.ReadLine());      
            while (m > 0)
            {
                int n = int.Parse(Console.ReadLine());
                int[] count = new int[4];
                while (n != 0)
                {
                    if (n >= 25)
                    {
                        n -= 25;
                        count[0]++;
                    }
                    else if (n >= 10 && n < 25)
                    {
                        n -= 10;
                        count[1]++;
                    }
                    else if (n >= 5 && n < 10)
                    {
                        n -= 5;
                        count[2]++;
                    }
                    else
                    {
                        n--;
                        count[3]++;
                    }
                }
                m--;
                for (int i = 0; i < count.Length; i++)
                {
                    Console.Write(count[i] + " ");
                }
                Console.WriteLine();
            }      
        }
    }
}
반응형

'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글

백준 C# - 2292 +) 풀이  (0) 2023.06.13
백준 C# - 2903 +) 풀이  (0) 2023.05.29
백준 C# - 11005 +) 풀이  (0) 2023.05.25
백준 C# - 2745  (0) 2023.05.25
백준 C# - 2563 +) 풀이  (0) 2023.05.18

댓글