結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,036 KB
testcase_01 WA -
testcase_02 AC 37 ms
52,720 KB
testcase_03 AC 36 ms
52,948 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 31 ms
51,904 KB
testcase_10 AC 33 ms
51,792 KB
testcase_11 AC 33 ms
52,460 KB
testcase_12 AC 34 ms
52,568 KB
testcase_13 AC 33 ms
52,400 KB
testcase_14 AC 32 ms
52,560 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 31 ms
52,676 KB
testcase_18 AC 31 ms
52,492 KB
testcase_19 AC 32 ms
52,560 KB
testcase_20 AC 33 ms
52,484 KB
testcase_21 AC 34 ms
52,824 KB
testcase_22 AC 34 ms
52,228 KB
testcase_23 AC 34 ms
52,020 KB
testcase_24 AC 32 ms
51,944 KB
testcase_25 AC 32 ms
52,028 KB
testcase_26 AC 33 ms
53,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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