結果

問題 No.56 消費税
ユーザー 3qvwn3qvwn
提出日時 2019-07-02 11:11:53
言語 Elixir
(1.18.1)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 1,028 ms
コンパイル使用メモリ 63,512 KB
実行使用メモリ 55,872 KB
最終ジャッジ日時 2024-12-31 03:09:40
合計ジャッジ時間 17,300 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 537 ms
54,284 KB
testcase_01 AC 535 ms
54,212 KB
testcase_02 AC 540 ms
53,980 KB
testcase_03 AC 542 ms
54,140 KB
testcase_04 AC 580 ms
54,296 KB
testcase_05 AC 544 ms
54,728 KB
testcase_06 AC 540 ms
54,044 KB
testcase_07 AC 540 ms
54,356 KB
testcase_08 AC 544 ms
54,228 KB
testcase_09 AC 534 ms
54,908 KB
testcase_10 AC 537 ms
55,872 KB
testcase_11 WA -
testcase_12 AC 537 ms
54,356 KB
testcase_13 WA -
testcase_14 AC 535 ms
54,000 KB
testcase_15 AC 536 ms
54,180 KB
testcase_16 AC 533 ms
54,168 KB
testcase_17 AC 540 ms
55,256 KB
testcase_18 AC 550 ms
55,412 KB
testcase_19 AC 546 ms
54,604 KB
testcase_20 AC 567 ms
54,324 KB
testcase_21 AC 547 ms
54,176 KB
testcase_22 AC 553 ms
55,400 KB
testcase_23 AC 545 ms
54,680 KB
testcase_24 AC 554 ms
54,084 KB
testcase_25 AC 541 ms
54,244 KB
testcase_26 AC 560 ms
54,168 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 |> Float.to_string |> String.trim(".0") |> IO.puts
  end
end
0