結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
17,792 KB
testcase_01 AC 20 ms
17,920 KB
testcase_02 AC 23 ms
17,792 KB
testcase_03 AC 22 ms
17,408 KB
testcase_04 AC 23 ms
17,664 KB
testcase_05 AC 27 ms
18,304 KB
testcase_06 AC 25 ms
18,560 KB
testcase_07 AC 25 ms
18,048 KB
testcase_08 AC 41 ms
22,912 KB
testcase_09 AC 22 ms
17,664 KB
testcase_10 AC 21 ms
17,792 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