For the problem 2043D - Problem about GCD,
- 298543362 — using $$$gcd$$$ function — gives AC (578 ms)
- 298543382 — using __$$$gcd$$$ function — gives TLE
I was earlier told that by my friends and mentors that __gcd is faster than gcd. Can anyone tell where did I go wrong $$$?$$$