summaryrefslogtreecommitdiffstats
path: root/day11/input.txt
diff options
context:
space:
mode:
Diffstat (limited to 'day11/input.txt')
-rw-r--r--day11/input.txt55
1 files changed, 55 insertions, 0 deletions
diff --git a/day11/input.txt b/day11/input.txt
new file mode 100644
index 0000000..0dd3bf4
--- /dev/null
+++ b/day11/input.txt
@@ -0,0 +1,55 @@
1Monkey 0:
2 Starting items: 80
3 Operation: new = old * 5
4 Test: divisible by 2
5 If true: throw to monkey 4
6 If false: throw to monkey 3
7
8Monkey 1:
9 Starting items: 75, 83, 74
10 Operation: new = old + 7
11 Test: divisible by 7
12 If true: throw to monkey 5
13 If false: throw to monkey 6
14
15Monkey 2:
16 Starting items: 86, 67, 61, 96, 52, 63, 73
17 Operation: new = old + 5
18 Test: divisible by 3
19 If true: throw to monkey 7
20 If false: throw to monkey 0
21
22Monkey 3:
23 Starting items: 85, 83, 55, 85, 57, 70, 85, 52
24 Operation: new = old + 8
25 Test: divisible by 17
26 If true: throw to monkey 1
27 If false: throw to monkey 5
28
29Monkey 4:
30 Starting items: 67, 75, 91, 72, 89
31 Operation: new = old + 4
32 Test: divisible by 11
33 If true: throw to monkey 3
34 If false: throw to monkey 1
35
36Monkey 5:
37 Starting items: 66, 64, 68, 92, 68, 77
38 Operation: new = old * 2
39 Test: divisible by 19
40 If true: throw to monkey 6
41 If false: throw to monkey 2
42
43Monkey 6:
44 Starting items: 97, 94, 79, 88
45 Operation: new = old * old
46 Test: divisible by 5
47 If true: throw to monkey 2
48 If false: throw to monkey 7
49
50Monkey 7:
51 Starting items: 77, 85
52 Operation: new = old + 6
53 Test: divisible by 13
54 If true: throw to monkey 4
55 If false: throw to monkey 0