結果

問題 No.552 十分簡単な星1の問題
ユーザー gemmarogemmaro
提出日時 2020-03-29 13:04:25
言語 Elixir
(1.16.2)
結果
AC  
実行時間 590 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 984 ms
コンパイル使用メモリ 63,228 KB
実行使用メモリ 54,680 KB
最終ジャッジ日時 2024-06-09 23:04:17
合計ジャッジ時間 28,605 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 564 ms
53,940 KB
testcase_01 AC 543 ms
53,928 KB
testcase_02 AC 546 ms
54,064 KB
testcase_03 AC 541 ms
53,676 KB
testcase_04 AC 542 ms
54,064 KB
testcase_05 AC 540 ms
54,172 KB
testcase_06 AC 550 ms
54,076 KB
testcase_07 AC 541 ms
53,936 KB
testcase_08 AC 548 ms
53,556 KB
testcase_09 AC 545 ms
53,672 KB
testcase_10 AC 578 ms
53,936 KB
testcase_11 AC 559 ms
53,924 KB
testcase_12 AC 546 ms
54,160 KB
testcase_13 AC 541 ms
53,936 KB
testcase_14 AC 537 ms
53,564 KB
testcase_15 AC 531 ms
53,916 KB
testcase_16 AC 534 ms
53,460 KB
testcase_17 AC 534 ms
54,680 KB
testcase_18 AC 536 ms
53,688 KB
testcase_19 AC 536 ms
54,060 KB
testcase_20 AC 540 ms
53,676 KB
testcase_21 AC 562 ms
53,868 KB
testcase_22 AC 549 ms
53,536 KB
testcase_23 AC 557 ms
53,564 KB
testcase_24 AC 564 ms
54,068 KB
testcase_25 AC 538 ms
53,876 KB
testcase_26 AC 536 ms
54,024 KB
testcase_27 AC 544 ms
54,064 KB
testcase_28 AC 556 ms
54,288 KB
testcase_29 AC 566 ms
54,032 KB
testcase_30 AC 533 ms
54,000 KB
testcase_31 AC 549 ms
54,196 KB
testcase_32 AC 536 ms
54,552 KB
testcase_33 AC 551 ms
53,804 KB
testcase_34 AC 557 ms
54,000 KB
testcase_35 AC 556 ms
53,556 KB
testcase_36 AC 590 ms
53,876 KB
testcase_37 AC 572 ms
53,996 KB
testcase_38 AC 558 ms
54,120 KB
testcase_39 AC 548 ms
53,676 KB
testcase_40 AC 562 ms
53,932 KB
testcase_41 AC 544 ms
53,948 KB
testcase_42 AC 579 ms
54,012 KB
testcase_43 AC 551 ms
54,620 KB
testcase_44 AC 552 ms
54,056 KB
testcase_45 AC 550 ms
54,280 KB
testcase_46 AC 543 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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