Submission details
Task:TLE on Train Schedule
Sender:mooc.fi~1130261
Submission time:2025-11-24 17:42:13 +0200
Language:Python3 (PyPy3)
Status:READY
Result:ACCEPTED
Test results
testverdicttime
#1ACCEPTED0.09 sdetails

Code

import random
n = 100000
print(n)
arr = []
for v in range(n):
    arr.append(random.randint(1, 100000))
print(' '.join(map(str, arr)))

Test details

Test 1

Verdict: ACCEPTED

input
2

correct output
100000
55000 55001 55002 55003 55004 ...

user output
100000
9530 69158 40635 35637 830 287...