Task: | Bit Strings |
Sender: | bits pls |
Submission time: | 2019-05-25 13:18:27 +0300 |
Language: | Python3 |
Status: | READY |
Result: | RUNTIME ERROR |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.05 s | details |
#2 | ACCEPTED | 0.05 s | details |
#3 | ACCEPTED | 0.04 s | details |
#4 | ACCEPTED | 0.05 s | details |
#5 | ACCEPTED | 0.04 s | details |
#6 | ACCEPTED | 0.04 s | details |
#7 | ACCEPTED | 0.05 s | details |
#8 | ACCEPTED | 0.05 s | details |
#9 | ACCEPTED | 0.05 s | details |
#10 | ACCEPTED | 0.05 s | details |
#11 | RUNTIME ERROR | 0.84 s | details |
#12 | RUNTIME ERROR | 0.80 s | details |
#13 | RUNTIME ERROR | 0.82 s | details |
#14 | RUNTIME ERROR | 0.85 s | details |
#15 | RUNTIME ERROR | 0.82 s | details |
#16 | RUNTIME ERROR | 0.83 s | details |
#17 | RUNTIME ERROR | 0.85 s | details |
#18 | RUNTIME ERROR | 0.84 s | details |
Code
import sys sys.setrecursionlimit(1000000) n, k = [int(x) for x in input().split()] def add_nr(zs, ln=0, cache = {}): global l if ln == n: return 1 if (zs, ln) not in cache: if zs != k - 1: cache[(zs, ln)] = add_nr(zs + 1, ln + 1) + add_nr(0, ln + 1) else: cache[(zs, ln)] = add_nr(0, ln + 1) return cache[(zs, ln)] print(add_nr(0))
Test details
Test 1
Verdict: ACCEPTED
input |
---|
1 1 |
correct output |
---|
1 |
user output |
---|
1 |
Test 2
Verdict: ACCEPTED
input |
---|
2 1 |
correct output |
---|
1 |
user output |
---|
1 |
Test 3
Verdict: ACCEPTED
input |
---|
2 2 |
correct output |
---|
3 |
user output |
---|
3 |
Test 4
Verdict: ACCEPTED
input |
---|
3 1 |
correct output |
---|
1 |
user output |
---|
1 |
Test 5
Verdict: ACCEPTED
input |
---|
3 2 |
correct output |
---|
5 |
user output |
---|
5 |
Test 6
Verdict: ACCEPTED
input |
---|
3 3 |
correct output |
---|
7 |
user output |
---|
7 |
Test 7
Verdict: ACCEPTED
input |
---|
4 1 |
correct output |
---|
1 |
user output |
---|
1 |
Test 8
Verdict: ACCEPTED
input |
---|
4 2 |
correct output |
---|
8 |
user output |
---|
8 |
Test 9
Verdict: ACCEPTED
input |
---|
4 3 |
correct output |
---|
13 |
user output |
---|
13 |
Test 10
Verdict: ACCEPTED
input |
---|
4 4 |
correct output |
---|
15 |
user output |
---|
15 |
Test 11
Verdict: RUNTIME ERROR
input |
---|
654321 123456 |
correct output |
---|
796245691 |
user output |
---|
(empty) |
Test 12
Verdict: RUNTIME ERROR
input |
---|
1000000 1 |
correct output |
---|
1 |
user output |
---|
(empty) |
Test 13
Verdict: RUNTIME ERROR
input |
---|
1000000 10 |
correct output |
---|
256933600 |
user output |
---|
(empty) |
Test 14
Verdict: RUNTIME ERROR
input |
---|
1000000 100 |
correct output |
---|
142013415 |
user output |
---|
(empty) |
Test 15
Verdict: RUNTIME ERROR
input |
---|
1000000 1000 |
correct output |
---|
899626120 |
user output |
---|
(empty) |
Test 16
Verdict: RUNTIME ERROR
input |
---|
1000000 10000 |
correct output |
---|
374265948 |
user output |
---|
(empty) |
Test 17
Verdict: RUNTIME ERROR
input |
---|
1000000 100000 |
correct output |
---|
388134512 |
user output |
---|
(empty) |
Test 18
Verdict: RUNTIME ERROR
input |
---|
1000000 1000000 |
correct output |
---|
235042058 |
user output |
---|
(empty) |