結果

問題 No.2322 MMA文字列
ユーザー noriocnorioc
提出日時 2024-11-12 03:54:42
言語 Elixir
(1.16.2)
結果
AC  
実行時間 636 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 61,596 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-11-12 03:55:00
合計ジャッジ時間 17,439 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 597 ms
53,816 KB
testcase_01 AC 636 ms
53,976 KB
testcase_02 AC 585 ms
54,544 KB
testcase_03 AC 608 ms
54,000 KB
testcase_04 AC 578 ms
53,696 KB
testcase_05 AC 604 ms
54,148 KB
testcase_06 AC 623 ms
53,860 KB
testcase_07 AC 610 ms
53,680 KB
testcase_08 AC 623 ms
53,672 KB
testcase_09 AC 599 ms
53,552 KB
testcase_10 AC 608 ms
53,856 KB
testcase_11 AC 576 ms
54,408 KB
testcase_12 AC 606 ms
53,552 KB
testcase_13 AC 592 ms
54,288 KB
testcase_14 AC 623 ms
54,032 KB
testcase_15 AC 598 ms
54,040 KB
testcase_16 AC 613 ms
53,744 KB
testcase_17 AC 583 ms
53,484 KB
testcase_18 AC 591 ms
53,812 KB
testcase_19 AC 573 ms
53,980 KB
testcase_20 AC 627 ms
54,284 KB
testcase_21 AC 609 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts (if b, do: "Yes", else: "No")

  def is_mma(a, a, b), do: a != b
  def is_mma(_, _, _), do: false

  def main do
    [a, b, c] = input() |> String.graphemes()

    yn(is_mma(a, b, c))
  end
end
0