結果
問題 | No.56 消費税 |
ユーザー | _KingdomOfMoray |
提出日時 | 2019-12-22 22:01:59 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 5,000 ms |
コード長 | 179 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-14 18:18:32 |
合計ジャッジ時間 | 1,878 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 23 |
ソースコード
input_list = list(map(int,input().split())) d = input_list[0] p = input_list[1] # なぜか、これだめ # res = int(d * (1 + p / 100)) res = int(d + d * p * 0.01) print(res)