結果

問題 No.56 消費税
ユーザー あいうえおあいうえお
提出日時 2020-05-24 20:56:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 78 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 10,972 KB
実行使用メモリ 8,472 KB
最終ジャッジ日時 2023-08-02 11:26:26
合計ジャッジ時間 1,858 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
8,324 KB
testcase_01 AC 13 ms
8,316 KB
testcase_02 AC 13 ms
8,252 KB
testcase_03 AC 12 ms
7,832 KB
testcase_04 AC 12 ms
8,300 KB
testcase_05 AC 12 ms
8,248 KB
testcase_06 AC 12 ms
8,364 KB
testcase_07 AC 13 ms
8,308 KB
testcase_08 AC 13 ms
8,284 KB
testcase_09 AC 13 ms
8,312 KB
testcase_10 WA -
testcase_11 AC 13 ms
8,280 KB
testcase_12 AC 13 ms
8,352 KB
testcase_13 AC 13 ms
8,472 KB
testcase_14 AC 13 ms
8,368 KB
testcase_15 AC 13 ms
8,408 KB
testcase_16 AC 14 ms
8,384 KB
testcase_17 AC 12 ms
8,448 KB
testcase_18 AC 13 ms
8,284 KB
testcase_19 AC 14 ms
8,344 KB
testcase_20 AC 13 ms
8,300 KB
testcase_21 AC 12 ms
8,364 KB
testcase_22 AC 12 ms
8,328 KB
testcase_23 AC 13 ms
8,364 KB
testcase_24 AC 12 ms
8,300 KB
testcase_25 AC 12 ms
8,368 KB
testcase_26 AC 13 ms
8,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
d,p = map(int,input().split())
print(d + math.floor(d*(p*10**-2)))
0