結果

問題 No.975 ミスターマックスバリュ
ユーザー penqenpenqen
提出日時 2020-12-24 23:47:18
言語 Elixir
(1.16.2)
結果
AC  
実行時間 763 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 886 ms
コンパイル使用メモリ 62,808 KB
実行使用メモリ 87,372 KB
最終ジャッジ日時 2024-06-10 00:25:50
合計ジャッジ時間 8,211 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 561 ms
54,344 KB
testcase_01 AC 540 ms
54,464 KB
testcase_02 AC 533 ms
54,172 KB
testcase_03 AC 540 ms
54,152 KB
testcase_04 AC 546 ms
55,124 KB
testcase_05 AC 535 ms
53,980 KB
testcase_06 AC 547 ms
54,012 KB
testcase_07 AC 544 ms
54,788 KB
testcase_08 AC 763 ms
87,372 KB
testcase_09 AC 546 ms
53,996 KB
testcase_10 AC 541 ms
56,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [x, n, m] = IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1)
    an = IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1)
    bm = IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1)
    solve(x, n, m, an, bm) |> IO.puts() 
  end

  def solve(x, _n, _m, an, bm) do
    case {Enum.find(an, &(&1 == x)), Enum.find(bm, &(&1 == x))} do
      {^x, ^x} -> "MrMaxValu"
      {^x, nil} -> "MrMax"
      {nil, ^x} -> "MaxValu"
      _ -> -1
    end
  end
end
0