結果
問題 | No.975 ミスターマックスバリュ |
ユーザー | Keiya Watanabe |
提出日時 | 2020-03-21 01:55:43 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 50 ms / 2,000 ms |
コード長 | 781 bytes |
コンパイル時間 | 1,129 ms |
コンパイル使用メモリ | 111,660 KB |
実行使用メモリ | 27,860 KB |
最終ジャッジ日時 | 2024-05-09 13:20:56 |
合計ジャッジ時間 | 2,068 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
27,292 KB |
testcase_01 | AC | 30 ms
25,396 KB |
testcase_02 | AC | 28 ms
25,396 KB |
testcase_03 | AC | 29 ms
25,396 KB |
testcase_04 | AC | 30 ms
25,240 KB |
testcase_05 | AC | 34 ms
25,652 KB |
testcase_06 | AC | 34 ms
25,396 KB |
testcase_07 | AC | 33 ms
27,860 KB |
testcase_08 | AC | 50 ms
27,528 KB |
testcase_09 | AC | 29 ms
25,400 KB |
testcase_10 | AC | 29 ms
27,284 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections; using System.Collections.Generic; using System.Linq; IEnumerable<int> getLine() { return Console.ReadLine().Split(' ').Select(x => Convert.ToInt32(x)); } void Main() { IEnumerable<int> inputs = getLine(); int wantedNum = inputs.First(); IEnumerable<int> mrMaxList = getLine(); IEnumerable<int> maxValuList = getLine(); bool isMrMax = mrMaxList.Contains(wantedNum); bool isMaxValu = maxValuList.Contains(wantedNum); if (isMrMax && isMaxValu) { Console.WriteLine("MrMaxValu"); } else if (isMrMax) { Console.WriteLine("MrMax"); } else if (isMaxValu) { Console.WriteLine("MaxValu"); } else { Console.WriteLine("-1"); } } Main();