結果

問題 No.975 ミスターマックスバリュ
ユーザー GinFizz1185GinFizz1185
提出日時 2020-02-04 06:58:11
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 1,271 bytes
コンパイル時間 806 ms
コンパイル使用メモリ 112,848 KB
実行使用メモリ 22,096 KB
最終ジャッジ日時 2024-09-19 18:54:15
合計ジャッジ時間 1,689 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
17,920 KB
testcase_01 AC 20 ms
18,048 KB
testcase_02 AC 20 ms
17,920 KB
testcase_03 AC 22 ms
17,920 KB
testcase_04 AC 20 ms
17,920 KB
testcase_05 AC 23 ms
18,560 KB
testcase_06 AC 23 ms
18,432 KB
testcase_07 AC 24 ms
18,432 KB
testcase_08 AC 33 ms
22,096 KB
testcase_09 AC 22 ms
17,920 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 yukicode
{
    class No975
    {
        static void Main(string[] args)
        {
            int mrNum = 0, valueNum = 0, resMr = -1, resVal = -1;
            string reqCode  = "";
            string input;
            input = Console.ReadLine();

            string[] firstInfo = input.Split(" ");

            if(3 == firstInfo.Length)
            {
                reqCode = firstInfo[0];
                mrNum = int.Parse(firstInfo[1]);
                valueNum = int.Parse(firstInfo[2]);
            }

            input = Console.ReadLine();
            string[] secandInfo = input.Split(" ");
            input = Console.ReadLine();
            string[] thirdInfo = input.Split(" ");

            resMr = Array.IndexOf(secandInfo, reqCode);
            resVal = Array.IndexOf(thirdInfo, reqCode);

            if((resMr >= 0) && (resVal >= 0))
            {
                Console.WriteLine("MrMaxValu");
            }
            else if (resMr >= 0)
            {
                Console.WriteLine("MrMax");
            }
            else if (resVal >= 0)
            {
                Console.WriteLine("MaxValu");
            }
            else
            {
                Console.WriteLine("-1");
            }
        }
    }
}
0