結果

問題 No.591 (^o^)/
ユーザー gemmarogemmaro
提出日時 2020-04-04 10:31:53
言語 Elixir
(1.16.2)
結果
AC  
実行時間 544 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 835 ms
コンパイル使用メモリ 62,592 KB
実行使用メモリ 54,148 KB
最終ジャッジ日時 2024-06-09 23:07:20
合計ジャッジ時間 7,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
53,804 KB
testcase_01 AC 534 ms
54,116 KB
testcase_02 AC 523 ms
53,676 KB
testcase_03 AC 532 ms
53,820 KB
testcase_04 AC 536 ms
53,780 KB
testcase_05 AC 524 ms
54,052 KB
testcase_06 AC 528 ms
54,148 KB
testcase_07 AC 544 ms
53,944 KB
testcase_08 AC 524 ms
53,996 KB
testcase_09 AC 530 ms
53,808 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