TLE in python 3

can anybody suggest me how to overcome time limit in python 3.
plzz share any tips . i have come with the best algorithm but still got a time limit for my code.i think my method of input is slow so plzz share a fastest method of input

2 Likes

yeah me too!

The fastest method of input is by usingā€¦
ā€œfrom sys import stdinā€ on the top of the code and
Wherever you are using the command ā€˜input()ā€™ replace it with ā€˜stdin.readline()ā€™.

6 Likes

well thanks @harsha_man it works for my code

we can even print the output faster using the ā€˜stdout.write(str(answer))ā€™

2 Likes

Is there any faster way of finding combinations of a list too ?
Iā€™m using itertools.combinations() function and its resulting in TLE error.

Thankā€™s bro! It is really faster

Though I import stdin, TLE problem is not solved.

1 Like