結果

問題 No.56 消費税
ユーザー tokutaro
提出日時 2019-11-23 12:42:46
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 107 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-11 06:54:22
合計ジャッジ時間 1,301 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 13 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

l = raw_input().split(' ')
li = map(int, l)
D = li[0]
P = li[1]
print(int((1 + 0.01 * P) * D))
0