結果

問題 No.285 消費税2
ユーザー s_shohei
提出日時 2020-06-06 22:22:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 107 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-12-23 14:08:18
合計ジャッジ時間 5,060 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

d=int(input())
import decimal
D=decimal.Decimal(d)
M=decimal.Decimal("0.08")

print(decimal.Decimal(D+D*M))
0