結果

問題 No.69 文字を自由に並び替え
ユーザー 3qvwn3qvwn
提出日時 2019-07-04 00:21:28
言語 Elixir
(1.16.2)
結果
AC  
実行時間 563 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 941 ms
コンパイル使用メモリ 64,264 KB
実行使用メモリ 55,768 KB
最終ジャッジ日時 2024-06-09 22:51:27
合計ジャッジ時間 10,254 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 533 ms
54,516 KB
testcase_01 AC 559 ms
54,480 KB
testcase_02 AC 551 ms
55,528 KB
testcase_03 AC 537 ms
54,152 KB
testcase_04 AC 541 ms
54,192 KB
testcase_05 AC 549 ms
54,592 KB
testcase_06 AC 548 ms
54,472 KB
testcase_07 AC 539 ms
54,252 KB
testcase_08 AC 557 ms
54,128 KB
testcase_09 AC 563 ms
55,036 KB
testcase_10 AC 536 ms
55,768 KB
testcase_11 AC 540 ms
54,116 KB
testcase_12 AC 538 ms
54,384 KB
testcase_13 AC 541 ms
55,144 KB
testcase_14 AC 551 ms
54,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do 
  def main do
    [a,b] = IO.stream(:stdio, :line) |> Enum.take(2) |> Enum.map(&String.trim/1) |> Enum.map(&String.codepoints/1) |> Enum.map(&Enum.sort/1)
    (a == b) |> out |> IO.puts
  end
  
  def out(true) do
    "YES"
  end
  
  def out(false) do
    "NO"
  end
end
0