結果

問題 No.56 消費税
ユーザー a_ten
提出日時 2016-03-10 15:35:02
言語 Python2
(2.7.18)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 120 bytes
コンパイル時間 38 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 03:07:54
合計ジャッジ時間 1,026 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 22 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding:utf-8

from math import floor

n=raw_input().split()
D=int(n[0])
P=int(n[1]) * 0.01

print int(D + floor(D * P))
0