| Task: | Lukujono |
| Sender: | okkokko |
| Submission time: | 2021-12-09 16:53:56 +0200 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | RUNTIME ERROR | 0 |
| #3 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.10 s | 1 | details |
| #2 | RUNTIME ERROR | 0.10 s | 1 | details |
| #3 | RUNTIME ERROR | 0.10 s | 1 | details |
| #4 | RUNTIME ERROR | 0.10 s | 1 | details |
| #5 | RUNTIME ERROR | 0.10 s | 1 | details |
| #6 | RUNTIME ERROR | 0.10 s | 1 | details |
| #7 | RUNTIME ERROR | 0.10 s | 1 | details |
| #8 | RUNTIME ERROR | 0.10 s | 1 | details |
| #9 | RUNTIME ERROR | 0.10 s | 2 | details |
| #10 | RUNTIME ERROR | 0.10 s | 2 | details |
| #11 | RUNTIME ERROR | 0.10 s | 2 | details |
| #12 | RUNTIME ERROR | 0.10 s | 2 | details |
| #13 | RUNTIME ERROR | 0.10 s | 2 | details |
| #14 | RUNTIME ERROR | 0.10 s | 2 | details |
| #15 | RUNTIME ERROR | 0.10 s | 2 | details |
| #16 | RUNTIME ERROR | 0.10 s | 2 | details |
| #17 | RUNTIME ERROR | 0.10 s | 3 | details |
| #18 | RUNTIME ERROR | 0.10 s | 3 | details |
| #19 | RUNTIME ERROR | 0.10 s | 3 | details |
| #20 | RUNTIME ERROR | 0.10 s | 3 | details |
| #21 | RUNTIME ERROR | 0.10 s | 3 | details |
| #22 | RUNTIME ERROR | 0.10 s | 3 | details |
| #23 | RUNTIME ERROR | 0.10 s | 3 | details |
| #24 | RUNTIME ERROR | 0.10 s | 3 | details |
Code
# n = int(input())
# u = [0, 1]
# for i in range(2, n + 1):
# u.append(sum(u[i // j] for j in range(2, i + 1)))
# print(u[-1])
n = int(input())
u = {0: 0, 1: 1}
def U(x):
if x not in u:
# u[x] = sum(U(x // j) for j in range(2, x // 2 + 1)) + ( # sum(U(x // j) for j in range(x // 2 + 1, x + 1))
# x - (x // 2)
# )
g = 0
# g += sum(U(x // j) for j in range(x // 2 + 1, x + 1))
# g += sum(U(x // j) for j in range(x // 3 + 1, x // 2 + 1))
# g += sum(U(x // j) for j in range(2, x // 3 + 1))
# sum(U(x // j) for j in range(x // (n + 1) + 1, x // n + 1))
# U(n) * (x // n - x // (n + 1))
h = 1
# while x // h > 100:
while h < 100:
# sum(U(x // j) for j in range(x // (h + 1) + 1, x // h + 1))
# is equal to
g += U(h) * (x // h - x // (h + 1))
h += 1
g += sum(U(x // j) for j in range(2, x // h + 1))
u[x] = g
return u[x]
print(U(n))
Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 542 |
| correct output |
|---|
| 11942 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 2
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 929 |
| correct output |
|---|
| 29913 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 3
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 801 |
| correct output |
|---|
| 23460 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 4
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 935 |
| correct output |
|---|
| 30006 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 5
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 998 |
| correct output |
|---|
| 33766 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 6
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 942 |
| correct output |
|---|
| 30490 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 7
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 736 |
| correct output |
|---|
| 20285 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 8
Group: 1
Verdict: RUNTIME ERROR
| input |
|---|
| 930 |
| correct output |
|---|
| 29975 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 9
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 95404 |
| correct output |
|---|
| 90172356 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 10
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 98060 |
| correct output |
|---|
| 94687572 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 11
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 69495 |
| correct output |
|---|
| 52308390 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 12
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 92197 |
| correct output |
|---|
| 85306979 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 13
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 53418 |
| correct output |
|---|
| 32957881 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 14
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 97377 |
| correct output |
|---|
| 93859995 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 15
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 68065 |
| correct output |
|---|
| 50223001 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 16
Group: 2
Verdict: RUNTIME ERROR
| input |
|---|
| 95463 |
| correct output |
|---|
| 90201672 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 17
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 74323456 |
| correct output |
|---|
| 8975396101231 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 18
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 92132055 |
| correct output |
|---|
| 13006378374515 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 19
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 55135704 |
| correct output |
|---|
| 5354656932672 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 20
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 98613338 |
| correct output |
|---|
| 14631125716007 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 21
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 75558302 |
| correct output |
|---|
| 9238208186405 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 22
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 94968034 |
| correct output |
|---|
| 13713914468591 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 23
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 52163652 |
| correct output |
|---|
| 4858985762438 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...Test 24
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 94830583 |
| correct output |
|---|
| 13674294022172 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 36, in <module>
print(...