에서 AtCoder Beginners Selection (ABC087B - Coins)

준비



C#에서 AtCoder 데뷔 준비
나중에 AtCoder Beginners Selection을 해 보았습니다.

문제문



ABC087B - 코인
h tps // 아 t 여기 r. jp / sts / abs / sks / abc087_b

제출 결과


using System;

class Program
{
    static void Main(string[] args)
    {
        int a = int.Parse(Console.ReadLine());
        int b = int.Parse(Console.ReadLine());
        int c = int.Parse(Console.ReadLine());
        int x = int.Parse(Console.ReadLine());

        int choices = 0;
        for (int i = 0; i < a + 1; i++)
        {
            for (int j = 0; j < b + 1; j++)
            {
                for (int k = 0; k < c + 1; k++)
                {
                    if (((i * 500) + (j * 100) + (k * 50)) == x)
                    {
                        choices++;
                    }
                }

            }

        }
        Console.WriteLine($"{choices}");
    }
}

테스트 실행





좋은 웹페이지 즐겨찾기