結果

問題 No.975 ミスターマックスバリュ
ユーザー yumechiyumechi
提出日時 2021-02-10 01:17:41
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 10,952 ms
コンパイル使用メモリ 260,920 KB
実行使用メモリ 67,312 KB
最終ジャッジ日時 2024-07-07 06:28:11
合計ジャッジ時間 23,040 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 933 ms
64,232 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1,085 ms
64,388 KB
testcase_08 WA -
testcase_09 AC 931 ms
64,232 KB
testcase_10 AC 941 ms
64,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner


object Main extends App {
  val sc = new Scanner(System.in)

  val x = sc.nextInt
  val n = sc.nextInt
  val m = sc.nextInt

  val mr = if (Array.fill(n)(sc.nextInt).contains(x)) (1 << 1) else 0
  val mv = if (Array.fill(n)(sc.nextInt).contains(x)) 1 else 0
  val ans = (mr ^ mv) match {
    case 3 => "MrMaxValu"
    case 2 => "MrMax"
    case 1 => "MaxValu"
    case _ => "None"
  }
  println(ans)
}
0