Problem:
Please find the problem here.
Solution:
Just compute it with BigInteger in C#. Here is the code:
Answer: 1366
Please find the problem here.
Solution:
Just compute it with BigInteger in C#. Here is the code:
namespace Euler { using System; using System.Linq; using System.Numerics; internal static partial class Program { public static void Problem016() { BigInteger p = BigInteger.Pow(new BigInteger(2), 1000); Console.WriteLine(p.ToString().Select(x => x - '0').Aggregate((x, y) => (x + y))); } } }
Answer: 1366
No comments :
Post a Comment