Skip to content

Commit 1c966be

Browse files
1716 easy java math AP weeks remainder quotient
Hercy wants to save money for his first car. He puts money in the Leetcode bank every day. He starts by putting in $1 on Monday, the first day. Every day from Tuesday to Sunday, he will put in $1 more than the day before. On every subsequent Monday, he will put in $1 more than the previous Monday. Given n, return the total amount of money he will have in the Leetcode bank at the end of the nth day. Example 1: Input: n = 4 Output: 10 Explanation: After the 4th day, the total is 1 + 2 + 3 + 4 = 10. Example 2: Input: n = 10 Output: 37 Explanation: After the 10th day, the total is (1 + 2 + 3 + 4 + 5 + 6 + 7) + (2 + 3 + 4) = 37. Notice that on the 2nd Monday, Hercy only puts in $2. Example 3: Input: n = 20 Output: 96 Explanation: After the 20th day, the total is (1 + 2 + 3 + 4 + 5 + 6 + 7) + (2 + 3 + 4 + 5 + 6 + 7 + 8) + (3 + 4 + 5 + 6 + 7 + 8) = 96. Constraints: 1 <= n <= 1000
1 parent c09d8c2 commit 1c966be

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

calculate-money-in-leetcode-bank.java

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
class Solution {
2+
public int totalMoney(int n) {
3+
int sum=0;
4+
int q=n/7;
5+
int r=n%7;
6+
int a=0;
7+
for(int i=0;i<q;i++){
8+
a++;
9+
sum+=(7*(2*a+6))/2;
10+
//this will give sum till weeks
11+
}
12+
for(int i=0;i<r;i++){
13+
a++;
14+
sum+=a;
15+
//this is the sum of remaining days
16+
}
17+
return sum;
18+
}
19+
}

0 commit comments

Comments
 (0)