結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,060 KB
testcase_01 WA -
testcase_02 AC 70 ms
71,408 KB
testcase_03 AC 69 ms
71,064 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 69 ms
71,256 KB
testcase_10 AC 71 ms
71,456 KB
testcase_11 AC 70 ms
71,312 KB
testcase_12 AC 69 ms
71,344 KB
testcase_13 AC 70 ms
71,272 KB
testcase_14 AC 69 ms
71,280 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 69 ms
71,364 KB
testcase_18 AC 69 ms
71,540 KB
testcase_19 AC 70 ms
71,508 KB
testcase_20 AC 70 ms
71,400 KB
testcase_21 AC 68 ms
71,276 KB
testcase_22 AC 69 ms
71,468 KB
testcase_23 AC 68 ms
71,500 KB
testcase_24 AC 70 ms
71,324 KB
testcase_25 AC 70 ms
71,272 KB
testcase_26 AC 71 ms
71,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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