結果

問題 No.56 消費税
ユーザー gemmarogemmaro
提出日時 2020-04-10 07:42:00
言語 Elixir
(1.16.2)
結果
AC  
実行時間 581 ms / 5,000 ms
コード長 276 bytes
コンパイル時間 908 ms
コンパイル使用メモリ 63,268 KB
実行使用メモリ 55,248 KB
最終ジャッジ日時 2024-06-09 23:16:14
合計ジャッジ時間 17,268 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 545 ms
53,924 KB
testcase_01 AC 555 ms
54,264 KB
testcase_02 AC 558 ms
54,116 KB
testcase_03 AC 566 ms
54,004 KB
testcase_04 AC 550 ms
54,624 KB
testcase_05 AC 544 ms
54,128 KB
testcase_06 AC 553 ms
54,664 KB
testcase_07 AC 557 ms
54,252 KB
testcase_08 AC 554 ms
54,012 KB
testcase_09 AC 551 ms
53,996 KB
testcase_10 AC 550 ms
54,888 KB
testcase_11 AC 558 ms
54,768 KB
testcase_12 AC 548 ms
54,888 KB
testcase_13 AC 550 ms
54,384 KB
testcase_14 AC 540 ms
53,868 KB
testcase_15 AC 581 ms
53,996 KB
testcase_16 AC 547 ms
54,268 KB
testcase_17 AC 540 ms
53,972 KB
testcase_18 AC 581 ms
54,476 KB
testcase_19 AC 574 ms
55,052 KB
testcase_20 AC 555 ms
54,244 KB
testcase_21 AC 547 ms
54,948 KB
testcase_22 AC 559 ms
54,616 KB
testcase_23 AC 554 ms
54,168 KB
testcase_24 AC 539 ms
54,380 KB
testcase_25 AC 550 ms
54,196 KB
testcase_26 AC 537 ms
55,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.split()
    |> Enum.map(&String.to_integer(&1))
    |> (fn [d, tax] ->
          (d * (100 + tax) / 100)
          |> Float.floor()
          |> trunc
        end).()
    |> IO.puts()
  end
end
0