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?
|
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? |
|||||||||||||||||||||
|
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
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:
|
|||||||||||||||
|
|
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. |
|||
|
|
|
Create a vector of length 302, which is the length of 2^1000. Then, save 2 at index 0, then, double 1000 times. Just look at every index separetly and add 1 to the next index if the previous exeeds 10. Then just sum it up! |
|||
|
|
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 code... Please provide the necessary arguments to run this code. import java.math.BigInteger;
|
||||
|
|
It's pretty simple if you know how to use the biginteger. |
||||
|
|
|
2^1000 is a very large value, you would have to use BigIntegers. The algorithm would be something like:
|
|||||||||
|
|
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. |
|||
|
|
|
|||||
|
|
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. |
|||
|