結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,876 KB
testcase_01 AC 26 ms
26,724 KB
testcase_02 AC 27 ms
24,876 KB
testcase_03 AC 26 ms
24,680 KB
testcase_04 AC 26 ms
24,748 KB
testcase_05 AC 30 ms
25,064 KB
testcase_06 AC 30 ms
25,140 KB
testcase_07 AC 31 ms
25,452 KB
testcase_08 AC 48 ms
30,108 KB
testcase_09 AC 27 ms
26,720 KB
testcase_10 AC 27 ms
26,716 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