結果

問題 No.975 ミスターマックスバリュ
ユーザー bluemeganebluemegane
提出日時 2020-02-12 07:06:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 698 bytes
コンパイル時間 1,889 ms
コンパイル使用メモリ 111,396 KB
実行使用メモリ 27,808 KB
最終ジャッジ日時 2024-04-10 07:00:57
合計ジャッジ時間 2,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,808 KB
testcase_01 AC 26 ms
24,944 KB
testcase_02 AC 26 ms
24,876 KB
testcase_03 AC 26 ms
22,832 KB
testcase_04 AC 26 ms
24,816 KB
testcase_05 AC 30 ms
25,132 KB
testcase_06 AC 31 ms
25,520 KB
testcase_07 AC 32 ms
25,264 KB
testcase_08 AC 48 ms
27,808 KB
testcase_09 AC 27 ms
24,924 KB
testcase_10 AC 26 ms
26,708 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var x = int.Parse(line[0]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, int.Parse);
        line = Console.ReadLine().Trim().Split(' ');
        var b = Array.ConvertAll(line, int.Parse);
        Console.WriteLine(getAns(x, a, b));
    }
    static string getAns(int x, int[] a, int[] b)
    {
        var aa = a.Contains(x);
        var bb = b.Contains(x);
        if (aa && bb) return "MrMaxValu";
        if (aa) return "MrMax";
        if (bb) return "MaxValu";
        return "-1";
    }
}

0