結果

問題 No.842 初詣
ユーザー eiken7kyuueiken7kyuu
提出日時 2019-08-10 11:05:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 3,892 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 65,752 KB
実行使用メモリ 23,824 KB
最終ジャッジ日時 2023-09-26 23:15:42
合計ジャッジ時間 4,397 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
21,852 KB
testcase_01 AC 60 ms
23,760 KB
testcase_02 AC 61 ms
21,732 KB
testcase_03 AC 61 ms
21,784 KB
testcase_04 AC 61 ms
21,740 KB
testcase_05 AC 63 ms
21,732 KB
testcase_06 AC 62 ms
23,696 KB
testcase_07 AC 62 ms
23,748 KB
testcase_08 AC 61 ms
19,684 KB
testcase_09 AC 61 ms
23,824 KB
testcase_10 AC 64 ms
21,748 KB
testcase_11 AC 62 ms
21,792 KB
testcase_12 AC 61 ms
23,780 KB
testcase_13 AC 61 ms
21,748 KB
testcase_14 AC 61 ms
21,744 KB
testcase_15 AC 61 ms
21,748 KB
testcase_16 AC 61 ms
21,768 KB
testcase_17 AC 60 ms
23,776 KB
testcase_18 AC 62 ms
21,880 KB
testcase_19 AC 60 ms
21,716 KB
testcase_20 AC 61 ms
21,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using static System.Math;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            A();
        }

        static void A()
        {
            var ABCDEFG = ReadSplitInt();
            var A = ABCDEFG[0];
            var B = ABCDEFG[1];
            var C = ABCDEFG[2];
            var D = ABCDEFG[3];
            var E = ABCDEFG[4];
            var F = ABCDEFG[5];
            var G = ABCDEFG[6];

            for (int a = 0; a <= A; a++)
            {
                for (int b = 0; b <= B; b++)
                {
                    for (int c = 0; c <= C; c++)
                    {
                        for (int d = 0; d <= D; d++)
                        {
                            for (int e = 0; e <= E; e++)
                            {
                                for (int f = 0; f <= F; f++)
                                {
                                    if ((a * 500) + (b * 100) + (c * 50) + (d * 10) + (e * 5) + (f * 1) == G)
                                    {
                                        Println("YES");
                                        return;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            Println("NO");
        }

        static List<long> ReadLines(long n)
        {
            var l = new List<long>();
            for (long i = 0; i < n; i++)
            {
                l.Add(ReadLong());
            }
            return l;
        }

        static void YESOrNO(bool e) => Println(e ? "YES" : "NO");

        static void YesOrNo(bool e) => Println(e ? "Yes" : "No");

        static IEnumerable<int> Range(int start, int stop)
        {
            if (start < 0 || stop < 0 || start > stop || (start <= 0 && stop <= 0))
                return new List<int>();

            return Enumerable.Range(start, stop - start);
        }

        static bool IsDigit(string str)
        {
            var i = 0;
            return int.TryParse(str, out i);
        }

        static int SumDigits(long num)
        {
            return num.ToString().Select(x => x.ToString()).Sum(int.Parse);
        }

        static int[] ToIntArray(string str)
        {
            return str.Select(x => x.ToString()).Select(int.Parse).ToArray();
        }

        static long Gcd(long a, long b) => b == 0 ? a : Gcd(b, a % b);
        static long Lcm(long a, long b) => a / Gcd(a, b) * b;

        static bool IsPrime(int x)
        {
            if (x <= 1 || (x != 2 && x % 2 == 0)) return false;
            if (x == 2) return true;

            for (int i = 3; i < x; i += 2)
                if (x % i == 0) return false;

            return true;
        }

        static string Read() => Console.ReadLine();
        static int ReadInt() => int.Parse(Read());
        static long ReadLong() => long.Parse(Read());

        static List<string> ReadSplit() => Read().Split().ToList();
        static List<int> ReadSplitInt() => Read().Split().Select(int.Parse).ToList();
        static List<long> ReadSplitLong() => Read().Split().Select(long.Parse).ToList();

        static void Print(object value) => Console.Write(value.ToString());
        static void Println(object value) => Console.WriteLine(value.ToString());

        static string Join<T>(IEnumerable<T> list) => string.Join("", list);
    }

    public static class MyExtensions
    {
        public static string Slice(this string str, int start = 0, int stop = 0)
        {
            if (start > str.Length || stop > str.Length || start < 0 || stop < 0)
                return "";

            if (stop == 0) stop = str.Length;
            return str.Substring(start, stop - start);
        }
    }
}
0