結果

問題 No.56 消費税
ユーザー gemmarogemmaro
提出日時 2020-04-10 07:42:00
言語 Elixir
(1.18.1)
結果
AC  
実行時間 569 ms / 5,000 ms
コード長 276 bytes
コンパイル時間 1,113 ms
コンパイル使用メモリ 63,852 KB
実行使用メモリ 56,316 KB
最終ジャッジ日時 2024-12-31 03:55:48
合計ジャッジ時間 16,761 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
56,316 KB
testcase_01 AC 525 ms
53,880 KB
testcase_02 AC 535 ms
54,480 KB
testcase_03 AC 530 ms
54,484 KB
testcase_04 AC 566 ms
54,212 KB
testcase_05 AC 569 ms
54,140 KB
testcase_06 AC 529 ms
54,468 KB
testcase_07 AC 538 ms
54,504 KB
testcase_08 AC 558 ms
54,856 KB
testcase_09 AC 547 ms
54,420 KB
testcase_10 AC 528 ms
54,444 KB
testcase_11 AC 567 ms
54,116 KB
testcase_12 AC 552 ms
54,124 KB
testcase_13 AC 523 ms
54,292 KB
testcase_14 AC 528 ms
54,356 KB
testcase_15 AC 541 ms
53,992 KB
testcase_16 AC 525 ms
55,840 KB
testcase_17 AC 547 ms
54,824 KB
testcase_18 AC 525 ms
54,372 KB
testcase_19 AC 520 ms
54,616 KB
testcase_20 AC 549 ms
54,360 KB
testcase_21 AC 558 ms
53,876 KB
testcase_22 AC 532 ms
54,608 KB
testcase_23 AC 519 ms
54,408 KB
testcase_24 AC 524 ms
54,292 KB
testcase_25 AC 525 ms
54,152 KB
testcase_26 AC 516 ms
54,328 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