結果

問題 No.809 かけ算
ユーザー gemmarogemmaro
提出日時 2020-03-31 21:17:27
言語 Elixir
(1.16.2)
結果
AC  
実行時間 620 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 998 ms
コンパイル使用メモリ 55,264 KB
実行使用メモリ 49,892 KB
最終ジャッジ日時 2023-08-29 23:54:32
合計ジャッジ時間 6,656 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 614 ms
49,644 KB
testcase_01 AC 615 ms
49,808 KB
testcase_02 AC 611 ms
49,244 KB
testcase_03 AC 615 ms
49,376 KB
testcase_04 AC 611 ms
49,664 KB
testcase_05 AC 620 ms
49,892 KB
testcase_06 AC 619 ms
49,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> (fn c -> "1 " <> c end).()
    |> IO.puts()
  end
end
0