結果

問題 No.780 オフ会
ユーザー gemmarogemmaro
提出日時 2020-04-14 08:30:27
言語 Elixir
(1.16.2)
結果
AC  
実行時間 608 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 1,076 ms
コンパイル使用メモリ 62,444 KB
実行使用メモリ 55,376 KB
最終ジャッジ日時 2024-06-09 23:22:21
合計ジャッジ時間 15,506 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 604 ms
54,308 KB
testcase_01 AC 585 ms
53,876 KB
testcase_02 AC 608 ms
54,388 KB
testcase_03 AC 563 ms
54,720 KB
testcase_04 AC 603 ms
54,212 KB
testcase_05 AC 545 ms
54,012 KB
testcase_06 AC 564 ms
54,220 KB
testcase_07 AC 559 ms
53,744 KB
testcase_08 AC 586 ms
53,748 KB
testcase_09 AC 565 ms
53,744 KB
testcase_10 AC 553 ms
54,004 KB
testcase_11 AC 553 ms
55,264 KB
testcase_12 AC 573 ms
55,092 KB
testcase_13 AC 561 ms
55,376 KB
testcase_14 AC 540 ms
53,756 KB
testcase_15 AC 576 ms
54,168 KB
testcase_16 AC 568 ms
54,104 KB
testcase_17 AC 565 ms
54,232 KB
testcase_18 AC 544 ms
53,872 KB
testcase_19 AC 547 ms
55,044 KB
testcase_20 AC 562 ms
55,000 KB
testcase_21 AC 567 ms
54,920 KB
testcase_22 AC 579 ms
53,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    """
    #{yes_or_no}
    #{(a - b + 1) |> abs}
    """
    |> String.trim
  end
end
0