結果

問題 No.56 消費税
ユーザー yumenomatayumeyumenomatayume
提出日時 2020-03-21 16:11:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 74 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 53,936 KB
最終ジャッジ日時 2024-06-02 06:49:31
合計ジャッジ時間 1,882 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,084 KB
testcase_01 AC 36 ms
52,080 KB
testcase_02 AC 37 ms
52,336 KB
testcase_03 WA -
testcase_04 AC 35 ms
52,328 KB
testcase_05 AC 34 ms
52,296 KB
testcase_06 AC 38 ms
52,420 KB
testcase_07 AC 34 ms
53,132 KB
testcase_08 AC 33 ms
52,380 KB
testcase_09 AC 33 ms
52,452 KB
testcase_10 AC 33 ms
53,292 KB
testcase_11 AC 35 ms
52,356 KB
testcase_12 AC 34 ms
53,036 KB
testcase_13 AC 33 ms
51,748 KB
testcase_14 AC 32 ms
52,612 KB
testcase_15 AC 33 ms
52,368 KB
testcase_16 AC 34 ms
52,648 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