結果

問題 No.56 消費税
ユーザー IHIH
提出日時 2021-01-08 19:06:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 54 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-11-16 01:03:27
合計ジャッジ時間 2,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 40 ms
52,264 KB
testcase_02 AC 40 ms
52,664 KB
testcase_03 WA -
testcase_04 AC 39 ms
52,568 KB
testcase_05 AC 38 ms
51,864 KB
testcase_06 AC 39 ms
52,612 KB
testcase_07 AC 39 ms
52,272 KB
testcase_08 AC 39 ms
52,148 KB
testcase_09 AC 39 ms
53,076 KB
testcase_10 AC 38 ms
53,012 KB
testcase_11 AC 39 ms
52,420 KB
testcase_12 AC 39 ms
52,540 KB
testcase_13 AC 39 ms
52,424 KB
testcase_14 AC 39 ms
52,200 KB
testcase_15 AC 38 ms
52,024 KB
testcase_16 AC 38 ms
51,548 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 #

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