Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Read this
I had the same problem with huge numbers in the input, when I changed from Python 3 --> to Python 2, the problem disappeared and the code passed.
I had the problem with the e+16 whatever huge number
My code used regular division with single / sign
1.4949283383840498e+16 == 14949283383840498
Thanks Alyona42
This comment is hidden because it contains spoiler information about the solution
I have the same.
I think Python 3 creates flot (e.g. 1e17) from longer itegeres and even when we recreate it to int, we loose some accurateness at the end of number.