結果

問題 No.69 文字を自由に並び替え
ユーザー gemmarogemmaro
提出日時 2020-04-14 08:04:40
言語 Elixir
(1.16.2)
結果
AC  
実行時間 602 ms / 5,000 ms
コード長 300 bytes
コンパイル時間 1,126 ms
コンパイル使用メモリ 65,820 KB
実行使用メモリ 56,852 KB
最終ジャッジ日時 2024-06-09 23:21:19
合計ジャッジ時間 10,851 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 568 ms
56,852 KB
testcase_01 AC 566 ms
54,232 KB
testcase_02 AC 574 ms
53,756 KB
testcase_03 AC 559 ms
54,128 KB
testcase_04 AC 564 ms
53,680 KB
testcase_05 AC 568 ms
54,776 KB
testcase_06 AC 602 ms
53,988 KB
testcase_07 AC 550 ms
54,252 KB
testcase_08 AC 569 ms
53,980 KB
testcase_09 AC 566 ms
54,120 KB
testcase_10 AC 572 ms
53,916 KB
testcase_11 AC 576 ms
54,368 KB
testcase_12 AC 575 ms
54,256 KB
testcase_13 AC 602 ms
54,108 KB
testcase_14 AC 577 ms
54,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    1..2
    |> Enum.map(fn _ ->
      IO.read(:line)
      |> String.trim()
      |> String.to_charlist()
      |> Enum.sort()
    end)
    |> solve
    |> IO.puts()
  end

  defp solve([a, b]) do
    cond do
      a == b -> "YES"
      true -> "NO"
    end
  end
end
0