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 1108. Heritage

Who knows about java?
Posted by YSYMYTH 3 Jul 2012 20:40
I know how to solve this problem,but I want to use the BigInteger of Java,could someone help me deal with it?
email : ysymyth@gmail.com
Re: Who knows about java?
Posted by 2rf 4 Jul 2012 00:58
What kind of help do you need? BigIntegers' usage is very simple, I think. Just remember they are immutable, so if you need something like a += b use a = a.add(b) and not just a.add(b).
Re: Who knows about java?
Posted by YSYMYTH 4 Jul 2012 09:30
could you send me a sample of using java bignumber? I'm new to java.