結果

問題 No.56 消費税
ユーザー yn
提出日時 2014-11-25 17:52:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 78 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2025-01-02 21:51:18
合計ジャッジ時間 2,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 4
other RE * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

d,p = map(int, int().split())

price=d+d*(p/100)
print(math.floor(price))
0