From cad2d4f89181062f73d134b3bffb5cf943a2c43f Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Tue, 5 Dec 2023 20:53:15 -0500 Subject: 1716 --- 1716/main.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 1716/main.py diff --git a/1716/main.py b/1716/main.py new file mode 100755 index 0000000..c919243 --- /dev/null +++ b/1716/main.py @@ -0,0 +1,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() -- cgit v1.2.3