ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1012. K-based Numbers. Version 2

useful tip! (if you got AC in K-based Numbers. Version 1)
Posted by Miguel Angel Ortiz Merida 7 May 2015 05:27
Use Java! :D


so... I am used to code in C++, and I'd never solved a problem in Java before. I spent like an hour learning the basics, changed all the variables in my K-based Numbers. Version 1 solution to BigInteger in Java and got AC!
Re: useful tip! (if you got AC in K-based Numbers. Version 1)
Posted by Drunken Statue 6 Feb 2016 08:56
question does unfairly favors languages w/ big integer library

if cannot link in library for c++ then can implement by hand [for this question, only 4 ops required: =, +=, *=, output], but consumes time to debug