結果

問題 No.56 消費税
ユーザー mahiromahiro
提出日時 2020-01-11 17:59:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 166 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-05-04 00:18:26
合計ジャッジ時間 3,910 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
80,000 KB
testcase_01 AC 100 ms
80,188 KB
testcase_02 AC 102 ms
80,000 KB
testcase_03 AC 104 ms
80,344 KB
testcase_04 AC 104 ms
80,128 KB
testcase_05 AC 102 ms
79,776 KB
testcase_06 AC 100 ms
80,256 KB
testcase_07 AC 99 ms
80,304 KB
testcase_08 AC 100 ms
80,128 KB
testcase_09 AC 100 ms
80,180 KB
testcase_10 AC 103 ms
80,256 KB
testcase_11 AC 99 ms
80,248 KB
testcase_12 AC 104 ms
80,036 KB
testcase_13 AC 100 ms
79,844 KB
testcase_14 AC 100 ms
79,976 KB
testcase_15 AC 98 ms
80,352 KB
testcase_16 AC 99 ms
80,128 KB
testcase_17 AC 101 ms
80,228 KB
testcase_18 AC 99 ms
80,036 KB
testcase_19 AC 101 ms
79,820 KB
testcase_20 AC 101 ms
79,744 KB
testcase_21 AC 102 ms
80,032 KB
testcase_22 AC 101 ms
80,384 KB
testcase_23 AC 100 ms
80,132 KB
testcase_24 AC 103 ms
80,256 KB
testcase_25 AC 104 ms
80,076 KB
testcase_26 AC 102 ms
80,256 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