結果

問題 No.975 ミスターマックスバリュ
ユーザー Hoboteru4484Hoboteru4484
提出日時 2020-04-27 00:14:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 1,629 bytes
コンパイル時間 2,649 ms
コンパイル使用メモリ 110,856 KB
実行使用メモリ 28,956 KB
最終ジャッジ日時 2024-11-19 02:16:14
合計ジャッジ時間 2,689 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
21,936 KB
testcase_01 AC 25 ms
24,044 KB
testcase_02 AC 25 ms
25,736 KB
testcase_03 AC 25 ms
21,812 KB
testcase_04 AC 26 ms
23,860 KB
testcase_05 AC 31 ms
22,076 KB
testcase_06 AC 30 ms
26,024 KB
testcase_07 AC 32 ms
24,172 KB
testcase_08 AC 47 ms
28,956 KB
testcase_09 AC 25 ms
23,832 KB
testcase_10 AC 25 ms
23,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace yukicoder
{
    class Program
    {
        private const string WHITESPACE = " ";
        private const string MRMAX = "MrMax";
        private const string MAXVALU = "MaxValu";
        private const string BOTH = "MrMaxValu";
        private const string NONE = "-1";

        static void Main(string[] args)
        {
            var input = Console.ReadLine().Split(WHITESPACE);
            int wantItemCode = int.Parse(input[0]);
            int mrMaxQuantity = int.Parse(input[1]);
            int maxValuQuantity = int.Parse(input[2]);

            var mrMaxGoodsArray = GetGoodsArray(mrMaxQuantity);
            var maxValuGoodsArray = GetGoodsArray(maxValuQuantity);

            bool existMrMax = IsExistItem(wantItemCode, mrMaxGoodsArray);
            bool exisMaxValu = IsExistItem(wantItemCode, maxValuGoodsArray);

            Console.WriteLine(existMrMax && exisMaxValu ? BOTH : existMrMax ? MRMAX : exisMaxValu ? MAXVALU :NONE);
        }
        
        static int[] GetGoodsArray (int quantity )
        {
            var input = Console.ReadLine().Split(WHITESPACE);
            int[] goodsArray = new int[quantity];
            for (int i = 0; i < quantity; i++)
            {
                goodsArray[i] = int.Parse(input[i]);
            }

            return goodsArray;
        }

        static bool IsExistItem(int wantItem, int[] itemArray)
        {
            foreach (var item in itemArray)
            {
                if (item == wantItem)
                {
                    return true;
                }
            }
            return false;
        }
    }
}
0