結果

問題 No.591 (^o^)/
ユーザー gemmarogemmaro
提出日時 2020-04-04 10:31:53
言語 Elixir
(1.16.2)
結果
AC  
実行時間 624 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 998 ms
コンパイル使用メモリ 55,244 KB
実行使用メモリ 49,976 KB
最終ジャッジ日時 2023-08-29 23:55:55
合計ジャッジ時間 8,398 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 610 ms
49,380 KB
testcase_01 AC 617 ms
49,136 KB
testcase_02 AC 615 ms
49,976 KB
testcase_03 AC 610 ms
49,788 KB
testcase_04 AC 618 ms
49,168 KB
testcase_05 AC 621 ms
49,080 KB
testcase_06 AC 619 ms
49,684 KB
testcase_07 AC 617 ms
49,216 KB
testcase_08 AC 620 ms
49,088 KB
testcase_09 AC 624 ms
49,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    t = IO.gets("") |> String.trim()
    u = IO.gets("") |> String.trim()
    IO.puts("(#{t}#{u}#{t})/")
  end
end
0