Today I solved problem E. A Simple task that was given at last contest,and I find something intersting and new for me, posible and for other users.Why if I declare k
as a global variable I get TLE on test 9 and if I declare as a local variable int k=x
my code past all tests?
Can someone explain why?