| Task: | TLE on Entrepreneur |
| Sender: | francden |
| Submission time: | 2025-11-24 17:35:08 +0200 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | RUNTIME ERROR |
| test | verdict | time | |
|---|---|---|---|
| #1 | RUNTIME ERROR | 0.06 s | details |
Code
print("200000 1000000000")
s = ' '.join(1000000000 for i in range(200000))
print("1000000000 ")Test details
Test 1
Verdict: RUNTIME ERROR
| input |
|---|
| 2 |
| correct output |
|---|
| 23 1000000000 1000000000 1000000000 10000000... |
| user output |
|---|
| 200000 1000000000 |
Error:
Traceback (most recent call last):
File "input/code.py", line 2, in <module>
s = ' '.join(1000000000 for i in range(200000))
TypeError: sequence item 0: expected str, int found