結果

問題 No.56 消費税
ユーザー yumenomatayumeyumenomatayume
提出日時 2020-03-21 16:11:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 74 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 87,148 KB
実行使用メモリ 71,740 KB
最終ジャッジ日時 2023-08-24 16:59:45
合計ジャッジ時間 3,256 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,336 KB
testcase_01 AC 70 ms
71,508 KB
testcase_02 AC 70 ms
71,128 KB
testcase_03 WA -
testcase_04 AC 69 ms
71,740 KB
testcase_05 AC 70 ms
71,128 KB
testcase_06 AC 69 ms
71,500 KB
testcase_07 AC 69 ms
71,468 KB
testcase_08 AC 69 ms
71,552 KB
testcase_09 AC 70 ms
71,288 KB
testcase_10 AC 70 ms
71,660 KB
testcase_11 AC 69 ms
71,412 KB
testcase_12 AC 72 ms
71,536 KB
testcase_13 AC 70 ms
71,572 KB
testcase_14 AC 71 ms
71,584 KB
testcase_15 AC 71 ms
71,416 KB
testcase_16 AC 69 ms
71,388 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

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