FahimSifnatul's blog

By FahimSifnatul, 6 years ago, In English

Can someone tell me about the fastest python i/o ??? For 984C - Конечна или нет? , I have implemented the logic same as tutorial. But TLE on test 13 ( 44136959 ). If someone helps me telling about optimized fastest python 3 i/o then it will be a great help not only for me but also for others who will see this blog.

  • Vote: I like it
  • +1
  • Vote: I do not like it

»
6 years ago, # |
  Vote: I like it +8 Vote: I do not like it

Use pypy

»
6 years ago, # |
  Vote: I like it +9 Vote: I do not like it

Unfortunately, this is not a problem of the I/O (and you are using practically the fastest possible I/O already).

As LanceTheDragonTrainer said, you are better off using PyPy 2 to get the fastest runtime.

As a matter of fact, after the contest, many people had complained about the problem having a strict time limit even for C++ (what can one say then for Python?)

So you are better off doing it in C/C++ or think of some other way to get it fit in the TL using PyPy.

PS: You can filter the submissions for that problem with Accepted verdict using PyPy 2 to get the only accepted solution.