Task: | Dice Combinations |
Sender: | casimir2004 |
Submission time: | 2024-09-15 19:43:41 +0300 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | RUNTIME ERROR |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.02 s | details |
#2 | ACCEPTED | 0.02 s | details |
#3 | ACCEPTED | 0.02 s | details |
#4 | ACCEPTED | 0.02 s | details |
#5 | ACCEPTED | 0.02 s | details |
#6 | ACCEPTED | 0.02 s | details |
#7 | ACCEPTED | 0.02 s | details |
#8 | ACCEPTED | 0.02 s | details |
#9 | ACCEPTED | 0.02 s | details |
#10 | ACCEPTED | 0.02 s | details |
#11 | ACCEPTED | 0.02 s | details |
#12 | RUNTIME ERROR | 0.02 s | details |
#13 | RUNTIME ERROR | 0.02 s | details |
#14 | RUNTIME ERROR | 0.02 s | details |
#15 | RUNTIME ERROR | 0.02 s | details |
#16 | RUNTIME ERROR | 0.02 s | details |
#17 | RUNTIME ERROR | 0.02 s | details |
#18 | RUNTIME ERROR | 0.02 s | details |
#19 | RUNTIME ERROR | 0.02 s | details |
#20 | ACCEPTED | 0.02 s | details |
Code
n = int(input()) dice = [1, 2, 3, 4, 5, 6] def count(n, memo): if n < 0: return 0 elif n == 0: return 1 if n in memo: return memo[n] s = 0 for d in dice: s += count(n - d, memo) memo[n] = s return s memo = {} print(count(n, memo)%(10**9+7))
Test details
Test 1
Verdict: ACCEPTED
input |
---|
1 |
correct output |
---|
1 |
user output |
---|
1 |
Test 2
Verdict: ACCEPTED
input |
---|
2 |
correct output |
---|
2 |
user output |
---|
2 |
Test 3
Verdict: ACCEPTED
input |
---|
3 |
correct output |
---|
4 |
user output |
---|
4 |
Test 4
Verdict: ACCEPTED
input |
---|
4 |
correct output |
---|
8 |
user output |
---|
8 |
Test 5
Verdict: ACCEPTED
input |
---|
5 |
correct output |
---|
16 |
user output |
---|
16 |
Test 6
Verdict: ACCEPTED
input |
---|
6 |
correct output |
---|
32 |
user output |
---|
32 |
Test 7
Verdict: ACCEPTED
input |
---|
7 |
correct output |
---|
63 |
user output |
---|
63 |
Test 8
Verdict: ACCEPTED
input |
---|
8 |
correct output |
---|
125 |
user output |
---|
125 |
Test 9
Verdict: ACCEPTED
input |
---|
9 |
correct output |
---|
248 |
user output |
---|
248 |
Test 10
Verdict: ACCEPTED
input |
---|
10 |
correct output |
---|
492 |
user output |
---|
492 |
Test 11
Verdict: ACCEPTED
input |
---|
50 |
correct output |
---|
660641036 |
user output |
---|
660641036 |
Test 12
Verdict: RUNTIME ERROR
input |
---|
1000 |
correct output |
---|
937196411 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 20, in <module> p...
Test 13
Verdict: RUNTIME ERROR
input |
---|
123456 |
correct output |
---|
113810539 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 20, in <module> p...
Test 14
Verdict: RUNTIME ERROR
input |
---|
654321 |
correct output |
---|
615247550 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 20, in <module> p...
Test 15
Verdict: RUNTIME ERROR
input |
---|
999998 |
correct output |
---|
39372206 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 20, in <module> p...
Test 16
Verdict: RUNTIME ERROR
input |
---|
999999 |
correct output |
---|
511319454 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 20, in <module> p...
Test 17
Verdict: RUNTIME ERROR
input |
---|
1000000 |
correct output |
---|
874273980 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 20, in <module> p...
Test 18
Verdict: RUNTIME ERROR
input |
---|
1001 |
correct output |
---|
94201505 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 20, in <module> p...
Test 19
Verdict: RUNTIME ERROR
input |
---|
999997 |
correct output |
---|
74225807 |
user output |
---|
(empty) |
Error:
Traceback (most recent call last): File "/box/input/code.py", line 20, in <module> p...
Test 20
Verdict: ACCEPTED
input |
---|
40 |
correct output |
---|
567401756 |
user output |
---|
567401756 |