結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 556 ms
55,088 KB
testcase_01 AC 556 ms
53,916 KB
testcase_02 AC 577 ms
53,860 KB
testcase_03 AC 583 ms
53,864 KB
testcase_04 AC 563 ms
55,144 KB
testcase_05 AC 559 ms
54,528 KB
testcase_06 AC 551 ms
54,888 KB
testcase_07 AC 605 ms
54,456 KB
testcase_08 AC 568 ms
54,484 KB
testcase_09 AC 560 ms
55,256 KB
testcase_10 AC 566 ms
54,544 KB
testcase_11 WA -
testcase_12 AC 557 ms
55,416 KB
testcase_13 WA -
testcase_14 AC 559 ms
54,000 KB
testcase_15 AC 554 ms
55,368 KB
testcase_16 AC 554 ms
54,732 KB
testcase_17 AC 569 ms
54,256 KB
testcase_18 AC 580 ms
54,912 KB
testcase_19 AC 550 ms
53,996 KB
testcase_20 AC 543 ms
54,088 KB
testcase_21 AC 561 ms
54,980 KB
testcase_22 AC 564 ms
54,676 KB
testcase_23 AC 560 ms
54,128 KB
testcase_24 AC 562 ms
53,812 KB
testcase_25 AC 549 ms
54,060 KB
testcase_26 AC 551 ms
54,356 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