結果

問題 No.222 引き算と足し算
ユーザー gemmarogemmaro
提出日時 2020-05-29 20:20:45
言語 Elixir
(1.16.2)
結果
AC  
実行時間 765 ms / 1,000 ms
コード長 289 bytes
コンパイル時間 1,133 ms
コンパイル使用メモリ 63,604 KB
実行使用メモリ 54,984 KB
最終ジャッジ日時 2024-06-10 00:04:12
合計ジャッジ時間 24,763 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 633 ms
53,752 KB
testcase_01 AC 632 ms
54,240 KB
testcase_02 AC 635 ms
53,872 KB
testcase_03 AC 632 ms
54,580 KB
testcase_04 AC 637 ms
53,872 KB
testcase_05 AC 653 ms
53,820 KB
testcase_06 AC 665 ms
54,048 KB
testcase_07 AC 626 ms
53,784 KB
testcase_08 AC 630 ms
54,124 KB
testcase_09 AC 620 ms
54,932 KB
testcase_10 AC 626 ms
54,236 KB
testcase_11 AC 631 ms
54,812 KB
testcase_12 AC 625 ms
54,600 KB
testcase_13 AC 633 ms
53,864 KB
testcase_14 AC 642 ms
54,856 KB
testcase_15 AC 630 ms
54,008 KB
testcase_16 AC 630 ms
54,416 KB
testcase_17 AC 641 ms
54,736 KB
testcase_18 AC 629 ms
54,172 KB
testcase_19 AC 640 ms
54,984 KB
testcase_20 AC 663 ms
54,108 KB
testcase_21 AC 644 ms
53,868 KB
testcase_22 AC 640 ms
53,924 KB
testcase_23 AC 633 ms
54,072 KB
testcase_24 AC 642 ms
54,720 KB
testcase_25 AC 638 ms
54,116 KB
testcase_26 AC 644 ms
54,112 KB
testcase_27 AC 646 ms
53,864 KB
testcase_28 AC 765 ms
54,584 KB
testcase_29 AC 641 ms
54,288 KB
testcase_30 AC 632 ms
54,472 KB
testcase_31 AC 653 ms
53,996 KB
testcase_32 AC 647 ms
53,928 KB
testcase_33 AC 639 ms
54,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main, do: IO.read(:line) |> solve |> IO.puts()

  def solve(s) do
    {x, op_and_y} = s |> Integer.parse()
    {op, y_str} = op_and_y |> String.split_at(1)
    {y, _} = y_str |> Integer.parse()

    case op do
      "+" -> x - y
      "-" -> x + y
    end
  end
end
0