Skip to content

Commit

Permalink
Create 3204.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-im-gabriel authored Apr 3, 2023
1 parent f8a9ac5 commit 24f31f2
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions 3204.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
VALUES = {
1: 0,
2: 6,
3: 12,
4: 90,
5: 360,
6: 2040,
7: 10080,
8: 54810,
9: 290640,
10: 1588356,
11: 8676360,
12: 47977776,
13: 266378112
}

for _ in range(int(input())):
a = int(input())
print(VALUES.get(a, 1488801600))

0 comments on commit 24f31f2

Please sign in to comment.