結果

問題 No.56 消費税
ユーザー 3qvwn3qvwn
提出日時 2019-07-02 11:14:53
言語 Elixir
(1.16.2)
結果
AC  
実行時間 639 ms / 5,000 ms
コード長 186 bytes
コンパイル時間 1,080 ms
コンパイル使用メモリ 63,040 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-06-09 22:47:26
合計ジャッジ時間 19,652 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 634 ms
54,192 KB
testcase_01 AC 635 ms
53,924 KB
testcase_02 AC 639 ms
54,160 KB
testcase_03 AC 629 ms
54,064 KB
testcase_04 AC 629 ms
53,928 KB
testcase_05 AC 621 ms
53,940 KB
testcase_06 AC 625 ms
54,320 KB
testcase_07 AC 627 ms
53,940 KB
testcase_08 AC 627 ms
53,880 KB
testcase_09 AC 623 ms
54,120 KB
testcase_10 AC 628 ms
54,184 KB
testcase_11 AC 623 ms
53,876 KB
testcase_12 AC 631 ms
54,272 KB
testcase_13 AC 635 ms
53,936 KB
testcase_14 AC 627 ms
53,720 KB
testcase_15 AC 629 ms
54,072 KB
testcase_16 AC 624 ms
54,332 KB
testcase_17 AC 627 ms
54,672 KB
testcase_18 AC 626 ms
53,856 KB
testcase_19 AC 629 ms
54,176 KB
testcase_20 AC 628 ms
53,752 KB
testcase_21 AC 633 ms
54,544 KB
testcase_22 AC 632 ms
54,060 KB
testcase_23 AC 619 ms
53,748 KB
testcase_24 AC 625 ms
54,200 KB
testcase_25 AC 628 ms
54,056 KB
testcase_26 AC 624 ms
54,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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