what is the problem in my code.. i am getting runtime error https://www.codechef.com/viewsolution/23254994

https://www.codechef.com/viewsolution/23254994

While declaring the array, you have set it’s size as max+1. However, max can be as big as 2^{60} which exceeds integer limit. While declaring arrays, we can only use sizes which fit int.