| Task: | Dice Combinations |
| Sender: | Sanzis |
| Submission time: | 2025-09-15 16:08:35 +0300 |
| Language: | Python3 (CPython3) |
| Status: | READY |
| Result: | WRONG ANSWER |
| 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 | WRONG ANSWER | 0.02 s | details |
| #8 | WRONG ANSWER | 0.02 s | details |
| #9 | WRONG ANSWER | 0.02 s | details |
| #10 | WRONG ANSWER | 0.02 s | details |
| #11 | WRONG ANSWER | 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 | WRONG ANSWER | 0.02 s | details |
Code
goal = int(input(""))
valmis = {}
noppa = [1, 2, 3, 4, 5, 6]
def solution(goal):
if goal == 0:
return 0
if goal in valmis.keys():
return valmis[goal]
maara = 1
for n in noppa:
if goal-n > 0:
maara += solution(goal-n)
valmis[goal] = maara
return maara
count = 1
m = 10**9 + 7
for i in noppa:
if goal - i > 0:
count += solution(goal - i)
count %= m
if goal == 0:
print(0)
else:
print(count)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: WRONG ANSWER
| input |
|---|
| 7 |
| correct output |
|---|
| 63 |
| user output |
|---|
| 64 |
Test 8
Verdict: WRONG ANSWER
| input |
|---|
| 8 |
| correct output |
|---|
| 125 |
| user output |
|---|
| 127 |
Test 9
Verdict: WRONG ANSWER
| input |
|---|
| 9 |
| correct output |
|---|
| 248 |
| user output |
|---|
| 252 |
Test 10
Verdict: WRONG ANSWER
| input |
|---|
| 10 |
| correct output |
|---|
| 492 |
| user output |
|---|
| 500 |
Test 11
Verdict: WRONG ANSWER
| input |
|---|
| 50 |
| correct output |
|---|
| 660641036 |
| user output |
|---|
| 257732744 |
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 22, in <module>
c...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 22, in <module>
c...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 22, in <module>
c...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 22, in <module>
c...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 22, in <module>
c...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 22, in <module>
c...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 22, in <module>
c...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 22, in <module>
c...Test 20
Verdict: WRONG ANSWER
| input |
|---|
| 40 |
| correct output |
|---|
| 567401756 |
| user output |
|---|
| 453637803 |
