結果

問題 No.835 ジュース
ユーザー gemmarogemmaro
提出日時 2020-03-31 21:24:13
言語 Elixir
(1.18.1)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 1,102 ms
コンパイル使用メモリ 62,672 KB
実行使用メモリ 54,752 KB
最終ジャッジ日時 2024-12-31 03:40:59
合計ジャッジ時間 7,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
54,480 KB
testcase_01 AC 526 ms
54,636 KB
testcase_02 AC 529 ms
54,752 KB
testcase_03 AC 526 ms
53,860 KB
testcase_04 AC 526 ms
53,668 KB
testcase_05 AC 542 ms
54,252 KB
testcase_06 AC 563 ms
54,296 KB
testcase_07 AC 561 ms
53,992 KB
testcase_08 AC 558 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.to_integer()
    |> (fn n ->
          (1.5 * n)
          |> trunc()
        end).()
    |> IO.puts()
  end
end
0