結果

問題 No.975 ミスターマックスバリュ
ユーザー gemmarogemmaro
提出日時 2020-04-19 15:57:06
言語 Elixir
(1.16.2)
結果
AC  
実行時間 839 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 960 ms
コンパイル使用メモリ 62,616 KB
実行使用メモリ 89,176 KB
最終ジャッジ日時 2024-06-09 23:43:17
合計ジャッジ時間 9,001 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 593 ms
54,280 KB
testcase_01 AC 595 ms
54,636 KB
testcase_02 AC 595 ms
53,596 KB
testcase_03 AC 591 ms
54,120 KB
testcase_04 AC 593 ms
54,616 KB
testcase_05 AC 587 ms
54,340 KB
testcase_06 AC 592 ms
53,744 KB
testcase_07 AC 588 ms
55,056 KB
testcase_08 AC 839 ms
89,176 KB
testcase_09 AC 579 ms
54,448 KB
testcase_10 AC 579 ms
53,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    1..3
    |> Enum.map(fn _ ->
      IO.read(:line)
      |> String.trim()
      |> String.split()
      |> Enum.map(&String.to_integer/1)
    end)
    |> solve
    |> IO.puts()
  end

  def solve([[x | _], a, b]) do
    n = x in a
    v = x in b

    cond do
      n && v -> "MrMaxValu"
      n -> "MrMax"
      v -> "MaxValu"
      true -> -1
    end
  end
end
0