結果

問題 No.780 オフ会
ユーザー nao22bnao22b
提出日時 2019-04-14 14:37:49
言語 Elixir
(1.16.2)
結果
AC  
実行時間 570 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 1,038 ms
コンパイル使用メモリ 64,520 KB
実行使用メモリ 55,248 KB
最終ジャッジ日時 2024-06-09 22:32:14
合計ジャッジ時間 15,072 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 559 ms
54,264 KB
testcase_01 AC 558 ms
54,648 KB
testcase_02 AC 542 ms
54,932 KB
testcase_03 AC 567 ms
55,248 KB
testcase_04 AC 562 ms
53,796 KB
testcase_05 AC 549 ms
54,128 KB
testcase_06 AC 555 ms
53,872 KB
testcase_07 AC 557 ms
53,860 KB
testcase_08 AC 545 ms
54,124 KB
testcase_09 AC 559 ms
54,216 KB
testcase_10 AC 557 ms
53,852 KB
testcase_11 AC 555 ms
53,944 KB
testcase_12 AC 547 ms
53,688 KB
testcase_13 AC 542 ms
53,872 KB
testcase_14 AC 567 ms
54,608 KB
testcase_15 AC 550 ms
54,200 KB
testcase_16 AC 540 ms
54,248 KB
testcase_17 AC 537 ms
54,056 KB
testcase_18 AC 544 ms
53,980 KB
testcase_19 AC 544 ms
54,000 KB
testcase_20 AC 550 ms
54,224 KB
testcase_21 AC 543 ms
54,004 KB
testcase_22 AC 570 ms
54,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do

    def can_pair_txt(a, b) when a < b, do: "YES"
    def can_pair_txt(_, _), do: "NO"

    def remain_num(a, b), do: abs((a + 1) - b)

    def main do
        [a, b] = IO.gets("") |> String.trim |> String.split |> Enum.map(&String.to_integer/1)
        IO.puts can_pair_txt(a, b)
        IO.puts remain_num(a, b)
    end
end

0