CSES - Aalto Competitive Programming 2024 - wk3 - Homework - Results
Submission details
Task:Dice Combinations
Sender:clovis
Submission time:2024-09-13 16:41:55 +0300
Language:Python3 (PyPy3)
Status:READY
Result:
Test results
testverdicttime
#10.06 sdetails
#20.06 sdetails
#30.06 sdetails
#40.06 sdetails
#50.06 sdetails
#60.06 sdetails
#70.06 sdetails
#80.06 sdetails
#90.06 sdetails
#100.06 sdetails
#110.06 sdetails
#120.07 sdetails
#130.08 sdetails
#140.11 sdetails
#150.12 sdetails
#160.13 sdetails
#170.12 sdetails
#180.07 sdetails
#190.12 sdetails
#200.06 sdetails

Code

n = int(input())

MOD = 10**9 + 7
numWaysList = [0] * n

# base cases
numWaysList[0] = 1

for i in range(1, n + 1):
  for j in range(1, 7):
    if i - j >= 0:
      numWaysList[i] = (numWaysList[i] + numWaysList[i - j]) % MOD

print(numWaysList[n])

Test details

Test 1

Verdict:

input
1

correct output
1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 2

Verdict:

input
2

correct output
2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 3

Verdict:

input
3

correct output
4

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 4

Verdict:

input
4

correct output
8

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 5

Verdict:

input
5

correct output
16

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 6

Verdict:

input
6

correct output
32

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 7

Verdict:

input
7

correct output
63

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 8

Verdict:

input
8

correct output
125

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 9

Verdict:

input
9

correct output
248

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 10

Verdict:

input
10

correct output
492

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 11

Verdict:

input
50

correct output
660641036

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 12

Verdict:

input
1000

correct output
937196411

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 13

Verdict:

input
123456

correct output
113810539

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 14

Verdict:

input
654321

correct output
615247550

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 15

Verdict:

input
999998

correct output
39372206

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 16

Verdict:

input
999999

correct output
511319454

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 17

Verdict:

input
1000000

correct output
874273980

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 18

Verdict:

input
1001

correct output
94201505

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 19

Verdict:

input
999997

correct output
74225807

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...

Test 20

Verdict:

input
40

correct output
567401756

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 12, in <module>
    numWay...