結果

問題 No.383 レーティング
ユーザー gemmarogemmaro
提出日時 2020-04-17 17:09:11
言語 Elixir
(1.16.2)
結果
AC  
実行時間 537 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 1,067 ms
コンパイル使用メモリ 62,904 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-06-09 23:31:31
合計ジャッジ時間 9,307 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
54,280 KB
testcase_01 AC 531 ms
53,852 KB
testcase_02 AC 533 ms
54,140 KB
testcase_03 AC 523 ms
53,804 KB
testcase_04 AC 520 ms
54,412 KB
testcase_05 AC 522 ms
54,496 KB
testcase_06 AC 533 ms
53,564 KB
testcase_07 AC 532 ms
53,992 KB
testcase_08 AC 535 ms
53,736 KB
testcase_09 AC 531 ms
54,028 KB
testcase_10 AC 534 ms
54,544 KB
testcase_11 AC 529 ms
53,804 KB
testcase_12 AC 528 ms
53,988 KB
testcase_13 AC 537 ms
53,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

  def solve([a, b]) do
    cond do
      a == b -> 0
      a < b -> "+#{b - a}"
      true -> "-#{a - b}"
    end
  end
end
0