I always use long long in my solution , till now i haven't encountered any problem by this . But , i wonder is there any possibility , that a long long can cause error while int do not .
If you are aware of any such concept , please share it , it will be helpful .
Sometime Memory Limit Exceeds with DP or Graph Implementation, so it's better to use long long only for specific variables which may have chances of integer overflow.
Sometimes you might get TLE.
Yeah
No, its for long long more running time than int because of long long use 64 bits while int use 32 bits
I have never received a TLE for using long long in my 2 years of coding
*months
LOL,You have only solved 2 problems on CF,might be you have coding experience of 2 years on other platforms.
Ok brother,
just view these two submission of mine
86447533 (tle for using Long Long )
86447489 ( ac using int (define int as ll ) )
Yeah Sir, This can be one of the possible reasons for TLE.
Instead of error you may get TLE.