結果

問題 No.552 十分簡単な星1の問題
ユーザー gemmarogemmaro
提出日時 2020-03-29 13:04:25
言語 Elixir
(1.16.2)
結果
AC  
実行時間 666 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 1,200 ms
コンパイル使用メモリ 55,180 KB
実行使用メモリ 51,052 KB
最終ジャッジ日時 2023-08-29 23:52:26
合計ジャッジ時間 34,608 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 637 ms
49,732 KB
testcase_01 AC 640 ms
49,724 KB
testcase_02 AC 640 ms
49,224 KB
testcase_03 AC 640 ms
49,264 KB
testcase_04 AC 637 ms
49,496 KB
testcase_05 AC 651 ms
49,192 KB
testcase_06 AC 651 ms
49,564 KB
testcase_07 AC 648 ms
49,904 KB
testcase_08 AC 651 ms
49,116 KB
testcase_09 AC 663 ms
49,092 KB
testcase_10 AC 646 ms
51,052 KB
testcase_11 AC 643 ms
49,124 KB
testcase_12 AC 639 ms
49,164 KB
testcase_13 AC 642 ms
50,384 KB
testcase_14 AC 642 ms
49,136 KB
testcase_15 AC 644 ms
49,692 KB
testcase_16 AC 646 ms
49,676 KB
testcase_17 AC 652 ms
49,176 KB
testcase_18 AC 652 ms
49,176 KB
testcase_19 AC 648 ms
49,368 KB
testcase_20 AC 639 ms
49,256 KB
testcase_21 AC 654 ms
49,232 KB
testcase_22 AC 651 ms
49,384 KB
testcase_23 AC 634 ms
49,200 KB
testcase_24 AC 639 ms
49,256 KB
testcase_25 AC 666 ms
49,384 KB
testcase_26 AC 648 ms
49,256 KB
testcase_27 AC 660 ms
49,244 KB
testcase_28 AC 646 ms
49,196 KB
testcase_29 AC 649 ms
49,080 KB
testcase_30 AC 641 ms
49,792 KB
testcase_31 AC 645 ms
49,768 KB
testcase_32 AC 644 ms
49,160 KB
testcase_33 AC 636 ms
49,220 KB
testcase_34 AC 644 ms
49,104 KB
testcase_35 AC 635 ms
49,760 KB
testcase_36 AC 639 ms
49,688 KB
testcase_37 AC 655 ms
49,776 KB
testcase_38 AC 637 ms
49,232 KB
testcase_39 AC 648 ms
49,152 KB
testcase_40 AC 658 ms
49,164 KB
testcase_41 AC 651 ms
49,292 KB
testcase_42 AC 644 ms
49,624 KB
testcase_43 AC 639 ms
49,156 KB
testcase_44 AC 647 ms
49,372 KB
testcase_45 AC 645 ms
49,420 KB
testcase_46 AC 646 ms
49,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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