1716. Calculate Money in Leetcode Bank
Easy
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:
Example 2:
Example 3:
Constraints:
1 <= n <= 1000
解題
Runtime: 0 ms, faster than 100.00%
Memory Usage: 1.9 MB, less than 14.29%
Last updated