aboutsummaryrefslogtreecommitdiffstats
path: root/1716/main.py
blob: c91924344cbe7b313549193d3a0fd92f250ba730 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python

class Solution:
    def totalMoney(self, n:int)->int:
        week = n // 7
        day = n % 7
        total = 0
        for i in range(week):
            total += 28 + 7 * i
        for i in range(day):
            total += week + i + 1
        return total

def main():
    solution = Solution()
    print(solution.totalMoney(4))
    print(solution.totalMoney(10))
    print(solution.totalMoney(20))

if __name__ == '__main__':
    main()