-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecember_25.adb
132 lines (124 loc) · 4.41 KB
/
december_25.adb
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
with Ada.Text_IO; use Ada.Text_IO;
procedure December_25 is
type States is (A, B, C, D, E, F);
Tape_Limit : constant Integer := 10000000;
subtype Tape_Indices is Integer range -Tape_Limit .. Tape_Limit;
Tape : array (Tape_Indices) of Boolean := (others => False);
Cursor : Tape_Indices := 0;
Current_State : States := A;
Checksum : Natural := 0;
begin -- December_25
for I in Positive range 1 .. 12302209 loop
Case Current_State is
when A =>
-- If the current value is 1:
-- Write the value 0.
-- Move one slot to the left.
-- Continue with state D.
-- If the current value is 0:
-- Write the value 1.
-- Move one slot to the right.
-- Continue with state B.
if Tape (Cursor) then
Tape (Cursor) := False;
Cursor := Cursor - 1;
Current_State := D;
else
Tape (Cursor) := True;
Cursor := Cursor + 1;
Current_State := B;
end if; -- Tape (Cursor)
when B =>
-- If the current value is 1:
-- Write the value 0.
-- Move one slot to the right.
-- Continue with state F.
-- If the current value is 0:
-- Write the value 1.
-- Move one slot to the right.
-- Continue with state C.
if Tape (Cursor) then
Tape (Cursor) := False;
Cursor := Cursor + 1;
Current_State := F;
else
Tape (Cursor) := True;
Cursor := Cursor + 1;
Current_State := C;
end if; -- Tape (Cursor)
when C =>
-- If the current value is 1:
-- Write the value 1.
-- Move one slot to the left.
-- Continue with state A.
-- If the current value is 0:
-- Write the value 1.
-- Move one slot to the left.
-- Continue with state C.
if Tape (Cursor) then
Cursor := Cursor - 1;
Current_State := A;
else
Tape (Cursor) := True;
Cursor := Cursor - 1;
end if; -- Tape (Cursor)
when D =>
-- If the current value is 1:
-- Write the value 1.
-- Move one slot to the right.
-- Continue with state A.
-- If the current value is 0:
-- Write the value 0.
-- Move one slot to the left.
-- Continue with state E.
if Tape (Cursor) then
Cursor := Cursor + 1;
Current_State := A;
else
Cursor := Cursor - 1;
Current_State := E;
end if; -- Tape (Cursor)
when E =>
-- If the current value is 1:
-- Write the value 0.
-- Move one slot to the right.
-- Continue with state B.
-- If the current value is 0:
-- Write the value 1.
-- Move one slot to the left.
-- Continue with state A.
if Tape (Cursor) then
Tape (Cursor) := False;
Cursor := Cursor + 1;
Current_State := B;
else
Tape (Cursor) := True;
Cursor := Cursor - 1;
Current_State := A;
end if; -- Tape (Cursor)
when F=>
-- If the current value is 1:
-- Write the value 0.
-- Move one slot to the right.
-- Continue with state E.
-- If the current value is 0:
-- Write the value 0.
-- Move one slot to the right.
-- Continue with state C.
if Tape (Cursor) then
Tape (Cursor) := False;
Cursor := Cursor + 1;
Current_State := E;
else
Cursor := Cursor + 1;
Current_State := C;
end if; -- Tape (Cursor)
end case; -- Current_State
end loop;
for Tape_Index in Tape_Indices loop
if Tape (Tape_Index) then
Checksum := Checksum + 1;
end if; -- Tape_Index in Tape_Indices
end loop;
Put_Line ("Checksum:" & Natural'Image (Checksum));
end December_25;