vote up 0 vote down star
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?

flag

Homework question? – Vinegar Dec 18 '08 at 9:46
2  
Ah, not homework. projecteuler.net/index.php?section=problems&i… – Cody Brocious Dec 18 '08 at 9:47
1  
If it's not homework, it's missing the entire point of Project Euler - why visit a math problem site if you're just going to ship the work off to other people? – Gareth Dec 18 '08 at 9:48
@BlackPanther - "mind your own business"? Who/where do you think you are? This looks like homework, and although I can see it isn't from Cody's comment it should be clearly marked as an Euler question in the body. – annakata Dec 18 '08 at 9:59
You haven't shown anything by which we can see that you have been trying this from last two days. – Vinegar Dec 18 '08 at 10:03
show 9 more comments

11 Answers

vote up 13 vote down check

What’s wrong with simply counting it?

long sum = 0;
for (char c : java.math.BigInteger.valueOf(2).pow(1000).toString().toCharArray()) {
    sum += c - 48;
}

I should stop doing other people’s homework.

link|flag
"I should stop doing other people’s homework." LOL! Upvoting just for that sentence. – Andrew G. Johnson Dec 18 '08 at 9:54
Counting is not the solution here. – Gamecat Dec 18 '08 at 10:07
Project Euler doesn’t really care about how you solve the problem so this would be considered a valid solution. – Bombe Dec 18 '08 at 10:11
@Gamecat : What do you mean? – Learning Dec 18 '08 at 10:12
@Bombe - If you are really not interested then why are you doing others homework.Hope you don't have other job than doing others homework.Do you expect any pay for this. – Warrior Dec 18 '08 at 10:27
show 1 more comment
vote up 1 vote down

I won't provide code, but java.math.BigInteger should make this trivial.

link|flag
vote up 1 vote down

2^1000 is a very large value, you would have to use BigIntegers. The algorithm would be something like:

import java.math.BigInteger;
BigInteger two = new BigInteger("2");
BigInteger value = two.pow(1000);
int sum = 0;
while (value > 0) {
  sum += value.remainder(new BigInteger("10"));
  value = value.divide(new BigInteger("10"));
}
link|flag
Fix compiler errors. Here. . while (value.compareTo(new BigInteger("0")) == 1) . . .AND . . .sum += value.remainder(new BigInteger("10")).intValue(); – Vinegar Dec 18 '08 at 10:12
The contract of Comparable.compareTo() states that compareTo() should return values less than, equal to, or greather than 0. Even though BigInteger’s javadoc says it returns 1 you really should check for > 0. – Bombe Dec 18 '08 at 10:38
I actually think Bombe's solution is more elegant. It should even be a lot faster than mine. – soulmerge Dec 18 '08 at 10:48
To soulmerge, The good thing I found here, is no obvious use of char and String. I said 'obvious' because I haven't checked BigInteger source. To Bombe, good point. I agree. Thanks. – Vinegar Dec 19 '08 at 2:19
vote up 0 vote down

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.

    final String bignumber = BigInteger.valueOf(2).pow(1000).toString(10);
	long result = 0;
	for (int i = 0; i < bignumber.length(); i++) {
		result += Integer.valueOf(String.valueOf(bignumber.charAt(i)));
	}
	System.out.println("result: " + result);
link|flag
vote up 0 vote down

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.

link|flag
Nitpicking, but 2^1000 != 2^(2^500) – BlackWasp Jan 3 at 14:27
It's (2^500)^2 :-) – Vijay Dev Mar 14 at 12:51
vote up 4 vote down

Here is my solution:

public static void main(String[] args) {

	ArrayList<Integer> n = myPow(2, 100);

	int result = 0;
	for (Integer i : n) {
		result += i;
	}

	System.out.println(result);
}

public static ArrayList<Integer> myPow(int n, int p) {
	ArrayList<Integer> nl = new ArrayList<Integer>();
	for (char c : Integer.toString(n).toCharArray()) {
		nl.add(c - 48);
	}

	for (int i = 1; i < p; i++) {
		nl = mySum(nl, nl);
	}

	return nl;
}

public static ArrayList<Integer> mySum(ArrayList<Integer> n1, ArrayList<Integer> n2) {
	ArrayList<Integer> result = new ArrayList<Integer>();

	int carry = 0;

	int max = Math.max(n1.size(), n2.size());
	if (n1.size() != max)
		n1 = normalizeList(n1, max);
	if (n2.size() != max)
		n2 = normalizeList(n2, max);

	for (int i = max - 1; i >= 0; i--) {
		int n = n1.get(i) + n2.get(i) + carry;
		carry = 0;
		if (n > 9) {
			String s = Integer.toString(n);
			carry = s.charAt(0) - 48;
			result.add(0, s.charAt(s.length() - 1) - 48);
		} else
			result.add(0, n);
	}

	if (carry != 0)
		result.add(0, carry);

	return result;
}

public static ArrayList<Integer> normalizeList(ArrayList<Integer> l, int max) {
	int newSize = max - l.size();
	for (int i = 0; i < newSize; i++) {
		l.add(0, 0);
	}
	return l;
}

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:

123456
+   45
______
123501
link|flag
Is there any specific reason why you don't want to use BigInts? I'm thinking performance, but your version does not seem to be lightweight. – Morten Christiansen Dec 18 '08 at 11:42
lol. The reason is that this is a algorithm problem and you are suppose to find an answer that solves this without BigInts. BigInts is cheating ... – bruno conde Dec 18 '08 at 11:49
1  
As you say, it is an algorithm/math problem. The 2^32 or 2^64 limit is just an implementation limit imposed by the machine's processor. I'd argue that using BigInts just gets you back closer to ideal arithmetic. – Boojum Dec 19 '08 at 0:35
I'd have to agree with Boojum on this one. – Morten Christiansen Dec 19 '08 at 9:48
With BigInts this is a trivial problem. bruno is quite correct in that this isn't quite the point of the problem. – cletus Mar 24 at 23:50
vote up -3 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

Apart from the Java aspect, this is a duplicate of this question

link|flag
@annakata - Whether c++ code work in java.I hope u agreed this answer.Please tell me how to use the C++ code in java.Tell me this and close this question. – BlackPanther Dec 18 '08 at 11:56
@annakata - if(java books == c++ books ){ println("close this question"); }else{ println("Give answers other than commenting"); } According to your view In both the cases books are equal.But not programming languages .If anyone can read the C++ book for java programming? – BlackPanther Dec 18 '08 at 12:41
vote up 3 vote down

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.

link|flag
vote up 2 vote down

Bombe's solution is the best solution.It is very simple also

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.