結果

問題 No.830 日本人の9割は90%
ユーザー gemmarogemmaro
提出日時 2020-03-30 18:39:07
言語 Elixir
(1.16.2)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 1,252 ms
コンパイル使用メモリ 62,356 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-06-09 23:02:51
合計ジャッジ時間 10,144 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 665 ms
53,420 KB
testcase_01 AC 656 ms
53,548 KB
testcase_02 AC 652 ms
53,868 KB
testcase_03 AC 666 ms
53,544 KB
testcase_04 AC 673 ms
53,916 KB
testcase_05 AC 666 ms
53,944 KB
testcase_06 AC 661 ms
54,132 KB
testcase_07 AC 655 ms
53,600 KB
testcase_08 AC 668 ms
53,936 KB
testcase_09 AC 649 ms
53,848 KB
testcase_10 AC 654 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.to_integer()
    |> (&(&1 * 10)).()
    |> IO.puts()
  end
end
0