結果

問題 No.809 かけ算
ユーザー gemmarogemmaro
提出日時 2020-03-31 21:17:27
言語 Elixir
(1.16.2)
結果
AC  
実行時間 736 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 1,283 ms
コンパイル使用メモリ 63,856 KB
実行使用メモリ 54,064 KB
最終ジャッジ日時 2024-06-09 23:06:06
合計ジャッジ時間 6,467 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 550 ms
53,804 KB
testcase_01 AC 531 ms
53,800 KB
testcase_02 AC 525 ms
53,788 KB
testcase_03 AC 537 ms
54,056 KB
testcase_04 AC 530 ms
53,980 KB
testcase_05 AC 523 ms
54,000 KB
testcase_06 AC 736 ms
54,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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