結果
問題 | No.9012 二数の足し算 |
ユーザー | norioc |
提出日時 | 2024-07-23 23:15:11 |
言語 | Elixir (1.16.2) |
結果 |
AC
|
実行時間 | 665 ms / 2,000 ms |
コード長 | 310 bytes |
コンパイル時間 | 1,386 ms |
コンパイル使用メモリ | 62,840 KB |
実行使用メモリ | 56,520 KB |
最終ジャッジ日時 | 2024-07-23 23:15:20 |
合計ジャッジ時間 | 9,029 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 665 ms
54,000 KB |
testcase_01 | AC | 624 ms
54,516 KB |
testcase_02 | AC | 659 ms
54,068 KB |
testcase_03 | AC | 630 ms
53,808 KB |
testcase_04 | AC | 651 ms
56,520 KB |
testcase_05 | AC | 634 ms
53,608 KB |
testcase_06 | AC | 657 ms
53,804 KB |
testcase_07 | AC | 626 ms
54,312 KB |
testcase_08 | AC | 647 ms
54,496 KB |
ソースコード
defmodule Main do def main do [a, b] = input() |> String.split(",") |> Enum.map(&String.to_integer/1) IO.puts "a + b = #{a+b}" end def input, do: IO.read(:line) |> String.trim def ii, do: input() |> String.to_integer def li, do: input() |> String.split |> Enum.map(&String.to_integer/1) end