ES - Editorial (Unofficial)

the count of ASCII chars, including ‘\n’, ’ ', etc.

You solved it in JAVA or Python??? Which language you’ll recommend for such type of questions? (Since i didnt come across a C++ soln yet, i wanna know which language is msot user friendly for such questions :slight_smile: )

Usually python (or pypy) because int in python is automatically big integer. It’s more readable and math-friendly than java’s BigInteger, since operations are primitive. Though python is slower, CodeChef has 5x time limit multiplier for it anyway :smiley:

1 Like

Thanks!! :slight_smile: