Either this is something strangely deep or i have to revisit time complexity analysis for a piece of code !!
#include <iostream>
int main()
{
long long int t=1e18,a=0;
while(t--) a++;
std::cout<<a;
return 0;
}
This code executes in 15 ms codeforces / codechef ide! How is that even possible?
May be this question is too dumb but any help is appreciated. Thanks!