|
| 1 | +# [2806. Account Balance After Rounded Purchase](https://leetcode.com/problems/account-balance-after-rounded-purchase) |
| 2 | + |
| 3 | +[中文文档](/solution/2800-2899/2806.Account%20Balance%20After%20Rounded%20Purchase/README.md) |
| 4 | + |
| 5 | +## Description |
| 6 | + |
| 7 | +<p>Initially, you have a bank account balance of <code>100</code> dollars.</p> |
| 8 | + |
| 9 | +<p>You are given an integer <code>purchaseAmount</code> representing the amount you will spend on a purchase in dollars.</p> |
| 10 | + |
| 11 | +<p>At the store where you will make the purchase, the purchase amount is rounded to the <strong>nearest multiple</strong> of <code>10</code>. In other words, you pay a <strong>non-negative</strong> amount, <code>roundedAmount</code>, such that <code>roundedAmount</code> is a multiple of <code>10</code> and <code>abs(roundedAmount - purchaseAmount)</code> is <strong>minimized</strong>.</p> |
| 12 | + |
| 13 | +<p>If there is more than one nearest multiple of <code>10</code>, the <strong>largest multiple</strong> is chosen.</p> |
| 14 | + |
| 15 | +<p>Return <em>an integer denoting your account balance after making a purchase worth </em><code>purchaseAmount</code><em> dollars from the store.</em></p> |
| 16 | + |
| 17 | +<p><strong>Note:</strong> <code>0</code> is considered to be a multiple of <code>10</code> in this problem.</p> |
| 18 | + |
| 19 | +<p> </p> |
| 20 | +<p><strong class="example">Example 1:</strong></p> |
| 21 | + |
| 22 | +<pre> |
| 23 | +<strong>Input:</strong> purchaseAmount = 9 |
| 24 | +<strong>Output:</strong> 90 |
| 25 | +<strong>Explanation:</strong> In this example, the nearest multiple of 10 to 9 is 10. Hence, your account balance becomes 100 - 10 = 90. |
| 26 | +</pre> |
| 27 | + |
| 28 | +<p><strong class="example">Example 2:</strong></p> |
| 29 | + |
| 30 | +<pre> |
| 31 | +<strong>Input:</strong> purchaseAmount = 15 |
| 32 | +<strong>Output:</strong> 80 |
| 33 | +<strong>Explanation:</strong> In this example, there are two nearest multiples of 10 to 15: 10 and 20. So, the larger multiple, 20, is chosen. |
| 34 | +Hence, your account balance becomes 100 - 20 = 80. |
| 35 | +</pre> |
| 36 | + |
| 37 | +<p> </p> |
| 38 | +<p><strong>Constraints:</strong></p> |
| 39 | + |
| 40 | +<ul> |
| 41 | + <li><code>0 <= purchaseAmount <= 100</code></li> |
| 42 | +</ul> |
| 43 | + |
| 44 | +## Solutions |
| 45 | + |
| 46 | +<!-- tabs:start --> |
| 47 | + |
| 48 | +### **Python3** |
| 49 | + |
| 50 | +```python |
| 51 | +class Solution: |
| 52 | + def accountBalanceAfterPurchase(self, purchaseAmount: int) -> int: |
| 53 | + diff, x = 100, 0 |
| 54 | + for y in range(100, -1, -10): |
| 55 | + if (t := abs(y - purchaseAmount)) < diff: |
| 56 | + diff = t |
| 57 | + x = y |
| 58 | + return 100 - x |
| 59 | +``` |
| 60 | + |
| 61 | +### **Java** |
| 62 | + |
| 63 | +```java |
| 64 | +class Solution { |
| 65 | + public int accountBalanceAfterPurchase(int purchaseAmount) { |
| 66 | + int diff = 100, x = 0; |
| 67 | + for (int y = 100; y >= 0; y -= 10) { |
| 68 | + int t = Math.abs(y - purchaseAmount); |
| 69 | + if (t < diff) { |
| 70 | + diff = t; |
| 71 | + x = y; |
| 72 | + } |
| 73 | + } |
| 74 | + return 100 - x; |
| 75 | + } |
| 76 | +} |
| 77 | +``` |
| 78 | + |
| 79 | +### **C++** |
| 80 | + |
| 81 | +```cpp |
| 82 | +class Solution { |
| 83 | +public: |
| 84 | + int accountBalanceAfterPurchase(int purchaseAmount) { |
| 85 | + int diff = 100, x = 0; |
| 86 | + for (int y = 100; y >= 0; y -= 10) { |
| 87 | + int t = abs(y - purchaseAmount); |
| 88 | + if (t < diff) { |
| 89 | + diff = t; |
| 90 | + x = y; |
| 91 | + } |
| 92 | + } |
| 93 | + return 100 - x; |
| 94 | + } |
| 95 | +}; |
| 96 | +``` |
| 97 | +
|
| 98 | +### **Go** |
| 99 | +
|
| 100 | +```go |
| 101 | +func accountBalanceAfterPurchase(purchaseAmount int) int { |
| 102 | + diff, x := 100, 0 |
| 103 | + for y := 100; y >= 0; y -= 10 { |
| 104 | + t := abs(y - purchaseAmount) |
| 105 | + if t < diff { |
| 106 | + diff = t |
| 107 | + x = y |
| 108 | + } |
| 109 | + } |
| 110 | + return 100 - x |
| 111 | +} |
| 112 | +
|
| 113 | +func abs(x int) int { |
| 114 | + if x < 0 { |
| 115 | + return -x |
| 116 | + } |
| 117 | + return x |
| 118 | +} |
| 119 | +``` |
| 120 | + |
| 121 | +### **TypeScript** |
| 122 | + |
| 123 | +```ts |
| 124 | +function accountBalanceAfterPurchase(purchaseAmount: number): number { |
| 125 | + let [diff, x] = [100, 0]; |
| 126 | + for (let y = 100; y >= 0; y -= 10) { |
| 127 | + const t = Math.abs(y - purchaseAmount); |
| 128 | + if (t < diff) { |
| 129 | + diff = t; |
| 130 | + x = y; |
| 131 | + } |
| 132 | + } |
| 133 | + return 100 - x; |
| 134 | +} |
| 135 | +``` |
| 136 | + |
| 137 | +### **...** |
| 138 | + |
| 139 | +``` |
| 140 | +
|
| 141 | +``` |
| 142 | + |
| 143 | +<!-- tabs:end --> |
0 commit comments