summaryrefslogtreecommitdiff
path: root/2017/25.in
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-12-25 11:27:04 +0100
committertomsmeding <tom.smeding@gmail.com>2017-12-25 11:27:04 +0100
commitef8b789d18ba128f34a00ed8e789e664395e43ad (patch)
tree4c6265daae1ae44153cd337ca0bc6c72393b0d69 /2017/25.in
parente5e38b48f9bade9223a894fc212e26dbdee49783 (diff)
Christmas! 🎄
Diffstat (limited to '2017/25.in')
-rw-r--r--2017/25.in62
1 files changed, 62 insertions, 0 deletions
diff --git a/2017/25.in b/2017/25.in
new file mode 100644
index 0000000..e2e4d56
--- /dev/null
+++ b/2017/25.in
@@ -0,0 +1,62 @@
+Begin in state A.
+Perform a diagnostic checksum after 12399302 steps.
+
+In state A:
+ If the current value is 0:
+ - Write the value 1.
+ - Move one slot to the right.
+ - Continue with state B.
+ If the current value is 1:
+ - Write the value 0.
+ - Move one slot to the right.
+ - Continue with state C.
+
+In state B:
+ If the current value is 0:
+ - Write the value 0.
+ - Move one slot to the left.
+ - Continue with state A.
+ If the current value is 1:
+ - Write the value 0.
+ - Move one slot to the right.
+ - Continue with state D.
+
+In state C:
+ If the current value is 0:
+ - Write the value 1.
+ - Move one slot to the right.
+ - Continue with state D.
+ If the current value is 1:
+ - Write the value 1.
+ - Move one slot to the right.
+ - Continue with state A.
+
+In state D:
+ If the current value is 0:
+ - Write the value 1.
+ - Move one slot to the left.
+ - Continue with state E.
+ If the current value is 1:
+ - Write the value 0.
+ - Move one slot to the left.
+ - Continue with state D.
+
+In state E:
+ If the current value is 0:
+ - Write the value 1.
+ - Move one slot to the right.
+ - Continue with state F.
+ If the current value is 1:
+ - Write the value 1.
+ - Move one slot to the left.
+ - Continue with state B.
+
+In state F:
+ If the current value is 0:
+ - Write the value 1.
+ - Move one slot to the right.
+ - Continue with state A.
+ If the current value is 1:
+ - Write the value 1.
+ - Move one slot to the right.
+ - Continue with state E.