| Task: | Dice Combinations |
| Sender: | aalto26bh_008 |
| Submission time: | 2026-09-14 01:41:21 +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.01 s | details |
| #14 | RUNTIME ERROR | 0.06 s | details |
| #15 | RUNTIME ERROR | 0.09 s | details |
| #16 | RUNTIME ERROR | 0.09 s | details |
| #17 | RUNTIME ERROR | 0.09 s | details |
| #18 | RUNTIME ERROR | 0.00 s | details |
| #19 | RUNTIME ERROR | 0.09 s | details |
| #20 | RUNTIME ERROR | 0.00 s | details |
Code
#include <vector>
#include <iostream>
using namespace std;
const int mod = 1000000007;
int recur(int i, vector<bool> &r, vector<int> &v) {
if (i <= 6) {
return 1 << (i - 1);
}
if (r[i]) {
return v[i];
}
r[i] = true;
long s = 0;
for (int j = 1; j <= 6; ++j) s += recur(i - j, r, v);
v[i] = s % mod;
return v[i];
}
int main() {
int n;
cin >> n;
vector<bool> r(n + 1);
vector<int> v(n + 1);
cout << recur(n, r, v) << endl;
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 |
|---|
| 660641036 |
Test 12
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 |
| correct output |
|---|
| 937196411 |
| user output |
|---|
| 937196411 |
Test 13
Verdict: RUNTIME ERROR
| input |
|---|
| 123456 |
| correct output |
|---|
| 113810539 |
| user output |
|---|
| 113810539 |
Test 14
Verdict: RUNTIME ERROR
| input |
|---|
| 654321 |
| correct output |
|---|
| 615247550 |
| user output |
|---|
| 615247550 |
Test 15
Verdict: RUNTIME ERROR
| input |
|---|
| 999998 |
| correct output |
|---|
| 39372206 |
| user output |
|---|
| 39372206 |
Test 16
Verdict: RUNTIME ERROR
| input |
|---|
| 999999 |
| correct output |
|---|
| 511319454 |
| user output |
|---|
| 511319454 |
Test 17
Verdict: RUNTIME ERROR
| input |
|---|
| 1000000 |
| correct output |
|---|
| 874273980 |
| user output |
|---|
| 874273980 |
Test 18
Verdict: RUNTIME ERROR
| input |
|---|
| 1001 |
| correct output |
|---|
| 94201505 |
| user output |
|---|
| 94201505 |
Test 19
Verdict: RUNTIME ERROR
| input |
|---|
| 999997 |
| correct output |
|---|
| 74225807 |
| user output |
|---|
| 74225807 |
Test 20
Verdict: RUNTIME ERROR
| input |
|---|
| 40 |
| correct output |
|---|
| 567401756 |
| user output |
|---|
| 567401756 |
