Task: | Dice Combinations |
Sender: | Rafal |
Submission time: | 2024-09-16 15:33:06 +0300 |
Language: | C++ (C++20) |
Status: | READY |
Result: | RUNTIME ERROR |
test | verdict | time | |
---|---|---|---|
#1 | RUNTIME ERROR | 0.00 s | details |
#2 | RUNTIME ERROR | 0.00 s | details |
#3 | RUNTIME ERROR | 0.00 s | details |
#4 | RUNTIME ERROR | 0.00 s | details |
#5 | RUNTIME ERROR | 0.00 s | details |
#6 | RUNTIME ERROR | 0.00 s | details |
#7 | RUNTIME ERROR | 0.00 s | details |
#8 | RUNTIME ERROR | 0.00 s | details |
#9 | RUNTIME ERROR | 0.00 s | details |
#10 | RUNTIME ERROR | 0.00 s | details |
#11 | RUNTIME ERROR | 0.00 s | details |
#12 | RUNTIME ERROR | 0.00 s | details |
#13 | RUNTIME ERROR | 0.02 s | details |
#14 | RUNTIME ERROR | 0.08 s | details |
#15 | RUNTIME ERROR | 0.11 s | details |
#16 | RUNTIME ERROR | 0.11 s | details |
#17 | RUNTIME ERROR | 0.11 s | details |
#18 | RUNTIME ERROR | 0.00 s | details |
#19 | RUNTIME ERROR | 0.11 s | details |
#20 | RUNTIME ERROR | 0.00 s | details |
Code
#include <iostream> #include <math.h> int MOD = 1000000007; int helper(int n, int * done, int * memory){ if(n == 0){ return 1; } if(done[n] == true){ return memory[n]; } int ans = 0; for(int i = 1; i < 7; i++){ if (n - i < 0) break; ans += helper(n-i, done, memory) % MOD; } done[n] = true; memory[n] = ans; return ans; } int main(){ int n; std::cin >> n; int done[n]; int memory[n]; for (int i = 0; i < n; i++){ done[i] = false; memory[i] = 0; } int ans = helper(n, done, memory); std::cout << ans; return 1; }
Test details
Test 1
Verdict: RUNTIME ERROR
input |
---|
1 |
correct output |
---|
1 |
user output |
---|
1 |
Test 2
Verdict: RUNTIME ERROR
input |
---|
2 |
correct output |
---|
2 |
user output |
---|
2 |
Test 3
Verdict: RUNTIME ERROR
input |
---|
3 |
correct output |
---|
4 |
user output |
---|
4 |
Test 4
Verdict: RUNTIME ERROR
input |
---|
4 |
correct output |
---|
8 |
user output |
---|
8 |
Test 5
Verdict: RUNTIME ERROR
input |
---|
5 |
correct output |
---|
16 |
user output |
---|
16 |
Test 6
Verdict: RUNTIME ERROR
input |
---|
6 |
correct output |
---|
32 |
user output |
---|
32 |
Test 7
Verdict: RUNTIME ERROR
input |
---|
7 |
correct output |
---|
63 |
user output |
---|
63 |
Test 8
Verdict: RUNTIME ERROR
input |
---|
8 |
correct output |
---|
125 |
user output |
---|
125 |
Test 9
Verdict: RUNTIME ERROR
input |
---|
9 |
correct output |
---|
248 |
user output |
---|
248 |
Test 10
Verdict: RUNTIME ERROR
input |
---|
10 |
correct output |
---|
492 |
user output |
---|
492 |
Test 11
Verdict: RUNTIME ERROR
input |
---|
50 |
correct output |
---|
660641036 |
user output |
---|
-1635906456 |
Test 12
Verdict: RUNTIME ERROR
input |
---|
1000 |
correct output |
---|
937196411 |
user output |
---|
-1402277043 |
Test 13
Verdict: RUNTIME ERROR
input |
---|
123456 |
correct output |
---|
113810539 |
user output |
---|
-1985488431 |
Test 14
Verdict: RUNTIME ERROR
input |
---|
654321 |
correct output |
---|
615247550 |
user output |
---|
-1661496526 |
Test 15
Verdict: RUNTIME ERROR
input |
---|
999998 |
correct output |
---|
39372206 |
user output |
---|
1527747419 |
Test 16
Verdict: RUNTIME ERROR
input |
---|
999999 |
correct output |
---|
511319454 |
user output |
---|
1333450649 |
Test 17
Verdict: RUNTIME ERROR
input |
---|
1000000 |
correct output |
---|
874273980 |
user output |
---|
1706107547 |
Test 18
Verdict: RUNTIME ERROR
input |
---|
1001 |
correct output |
---|
94201505 |
user output |
---|
1742612065 |
Test 19
Verdict: RUNTIME ERROR
input |
---|
999997 |
correct output |
---|
74225807 |
user output |
---|
1428744101 |
Test 20
Verdict: RUNTIME ERROR
input |
---|
40 |
correct output |
---|
567401756 |
user output |
---|
1624725882 |