結果

問題 No.56 消費税
ユーザー yumenomatayume
提出日時 2020-03-21 16:08:28
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 74 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 65,024 KB
最終ジャッジ日時 2024-12-23 01:06:54
合計ジャッジ時間 2,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 4
other RE * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

d,p = map(int,input().split())
print(math.round(d*(1+p/100)))
0