結果

問題 No.56 消費税
ユーザー ciiro
提出日時 2021-11-17 10:33:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 113 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-12-23 06:10:57
合計ジャッジ時間 2,324 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
d , p = input().split()
d , p = Decimal(d) , Decimal(p)
print(int(d * (p / 100 + 1)))
0