結果

問題 No.56 消費税
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-25 18:55:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 71 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 87,216 KB
実行使用メモリ 71,576 KB
最終ジャッジ日時 2023-09-29 02:09:58
合計ジャッジ時間 3,679 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,356 KB
testcase_01 AC 75 ms
71,252 KB
testcase_02 AC 77 ms
71,296 KB
testcase_03 AC 77 ms
71,324 KB
testcase_04 AC 76 ms
71,332 KB
testcase_05 AC 75 ms
71,216 KB
testcase_06 AC 76 ms
71,280 KB
testcase_07 AC 75 ms
71,388 KB
testcase_08 AC 76 ms
71,524 KB
testcase_09 AC 79 ms
71,392 KB
testcase_10 AC 76 ms
71,388 KB
testcase_11 AC 76 ms
71,428 KB
testcase_12 AC 74 ms
71,312 KB
testcase_13 AC 75 ms
71,256 KB
testcase_14 AC 73 ms
71,324 KB
testcase_15 AC 74 ms
71,272 KB
testcase_16 AC 73 ms
71,352 KB
testcase_17 AC 75 ms
71,528 KB
testcase_18 AC 75 ms
71,328 KB
testcase_19 AC 75 ms
71,576 KB
testcase_20 AC 75 ms
71,344 KB
testcase_21 AC 75 ms
71,124 KB
testcase_22 AC 76 ms
71,324 KB
testcase_23 AC 75 ms
71,492 KB
testcase_24 AC 76 ms
71,120 KB
testcase_25 AC 75 ms
71,248 KB
testcase_26 AC 74 ms
71,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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