結果

問題 No.56 消費税
ユーザー 67oYG9nh2YMmIci67oYG9nh2YMmIci
提出日時 2020-06-25 17:25:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 89 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 10,588 KB
実行使用メモリ 29,596 KB
最終ジャッジ日時 2023-09-16 22:49:19
合計ジャッジ時間 6,793 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
29,468 KB
testcase_01 AC 138 ms
29,596 KB
testcase_02 AC 138 ms
29,408 KB
testcase_03 AC 138 ms
29,484 KB
testcase_04 AC 137 ms
29,472 KB
testcase_05 AC 136 ms
29,424 KB
testcase_06 AC 140 ms
29,368 KB
testcase_07 AC 138 ms
29,400 KB
testcase_08 AC 140 ms
29,480 KB
testcase_09 AC 139 ms
29,468 KB
testcase_10 AC 140 ms
29,440 KB
testcase_11 AC 134 ms
29,500 KB
testcase_12 AC 139 ms
29,364 KB
testcase_13 AC 137 ms
29,504 KB
testcase_14 AC 137 ms
29,424 KB
testcase_15 AC 135 ms
29,484 KB
testcase_16 AC 139 ms
29,452 KB
testcase_17 AC 137 ms
29,416 KB
testcase_18 AC 139 ms
29,428 KB
testcase_19 AC 136 ms
29,364 KB
testcase_20 AC 137 ms
29,432 KB
testcase_21 AC 136 ms
29,436 KB
testcase_22 AC 140 ms
29,436 KB
testcase_23 AC 135 ms
29,500 KB
testcase_24 AC 138 ms
29,440 KB
testcase_25 AC 139 ms
29,416 KB
testcase_26 AC 138 ms
29,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
D, P = map(int, input().split())
print(int(np.floor(D + D * P / 100)))
0