Enormous Input Test
Enormous Input Test Problem Code: INTEST
I did not have to solve this one as answer was already given in the ide for me somehow.
However, I found a link that explains what is happening within the code.
ios_base::sync_with_studio(false);
cin.tie(NULL);
I tried with commenting both the lines too.
With these lines included, the run time was 0.14 seconds
However, without these lines, it increased up to 0.64 seconds for me.
Comments
Post a Comment