2^15 = 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26.
What is the sum of the digits of the number 2 power of 1000 (2^1000)?
Can anyone provide the solution or algorithm for this problem in java?
|
4
|
2^15 = 32768 and the sum of its digits is 3 + 2 + 7 + 6 + 8 = 26. What is the sum of the digits of the number 2 power of 1000 (2^1000)? Can anyone provide the solution or algorithm for this problem in java?
|
||||||||||||||
|
|
|
What’s wrong with simply counting it?
I should stop doing other people’s homework. |
||||||||||
|
|
|
I won't provide code, but |
||
|
|
|
|
2^1000 is a very large value, you would have to use BigIntegers. The algorithm would be something like:
|
||||||||
|
|
|
something like that sould do it bute force: - although there is a nice analytic solution (think pen& paper) using mathematics - that may also work for numbers greater than 1000.
|
||
|
|
|
|
How can 2^1000 be alternatively expressed? I don't remember much from my maths days, but perhaps something like (2^(2^500))? And how can that be expressed? Find an easy way to calculate 2^1000, put the result in a BigInteger, and the rest is perhaps trivial. |
||
|
|
Here is my solution:
This code can be improved in many ways ... it was just to prove you can perfectly do it without BigInts. The catch is to transform each number to a list. That way you can do basic sums like:
|
||||||||||||
|
|
|
Sorry, can't resist the ambiguous question. Clearly, 2^1000 will have every digit in it for most radices, so the answer for base-10 must be 45. Other fun radices to consider: In base-2, the answer is 1. In base-2^1000, the answer is 2^1000. |
||
|
|
|
|
Alternatively, you could grab a double and manipulate its bits. With numbers that are the power of 2, you won't have truncation errors. Then you can convert it to string. Having that said, it's still a brute-force approach. There must be a nice, mathematical way to make it without actually generating a number. |
||
|
|
|
|
Apart from the Java aspect, this is a duplicate of this question |
||||
|
|
|
This problem is not simply asking you how to find the nearest big integer library, so I'd avoid that solution. This page has a good overview of this particular problem. |
||
|
|
|
|
Bombe's solution is the best solution.It is very simple also |
||
|
|