結果

問題 No.56 消費税
ユーザー mahiromahiro
提出日時 2020-01-11 17:59:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 5,000 ms
コード長 166 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 80,448 KB
最終ジャッジ日時 2024-11-25 05:54:12
合計ジャッジ時間 3,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
80,268 KB
testcase_01 AC 102 ms
80,060 KB
testcase_02 AC 102 ms
79,956 KB
testcase_03 AC 104 ms
80,316 KB
testcase_04 AC 102 ms
80,092 KB
testcase_05 AC 101 ms
79,996 KB
testcase_06 AC 104 ms
79,632 KB
testcase_07 AC 105 ms
80,436 KB
testcase_08 AC 104 ms
79,820 KB
testcase_09 AC 105 ms
79,996 KB
testcase_10 AC 104 ms
80,236 KB
testcase_11 AC 103 ms
80,128 KB
testcase_12 AC 101 ms
80,184 KB
testcase_13 AC 104 ms
80,040 KB
testcase_14 AC 104 ms
80,448 KB
testcase_15 AC 103 ms
80,140 KB
testcase_16 AC 104 ms
79,756 KB
testcase_17 AC 102 ms
79,972 KB
testcase_18 AC 104 ms
80,276 KB
testcase_19 AC 104 ms
80,184 KB
testcase_20 AC 105 ms
79,936 KB
testcase_21 AC 103 ms
80,160 KB
testcase_22 AC 105 ms
79,760 KB
testcase_23 AC 102 ms
80,060 KB
testcase_24 AC 102 ms
80,332 KB
testcase_25 AC 103 ms
80,044 KB
testcase_26 AC 101 ms
80,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import decimal

price, tax_rate = [decimal.Decimal(i) for i in input().split()]
ans = int(price * (decimal.Decimal(1) + tax_rate * decimal.Decimal(0.01)))
print(ans)
0