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

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()ā€™.

1 Like

well thanks @harsha_man it works for my code

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