-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem14.cs
39 lines (32 loc) · 871 Bytes
/
Problem14.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Numerics;
using System.Diagnostics;
class Problem14
{
const int MAXNUM = 1000000;
static void Main(string[] args)
{
int largestChainLength = 0;
int largestChainLengthVal = 0;
for (int i = 3; i < MAXNUM; i++)
{
long val = i;
int sequenceLength = 1;
while (val > 1)
{
// Calculate the next sequence value
if (val % 2 == 0)
val = val / 2;
else
val = (3 * val) + 1;
sequenceLength++;
}
if (sequenceLength > largestChainLength)
{
largestChainLength = sequenceLength;
largestChainLengthVal = i;
}
}
Console.WriteLine(largestChainLengthVal);
}
}