about summary refs log tree commit diff
path: root/day20.rb
diff options
context:
space:
mode:
Diffstat (limited to 'day20.rb')
-rw-r--r--day20.rb26
1 files changed, 26 insertions, 0 deletions
diff --git a/day20.rb b/day20.rb
new file mode 100644
index 0000000..c45c4ff
--- /dev/null
+++ b/day20.rb
@@ -0,0 +1,26 @@
+M = 33100000
+L = 1000000
+
+a = Array.new(L+1, 0)
+mj = 1_0000_0000
+
+1.upto(L) { |i|
+  i.step(L, i) { |j|
+    a[j] += 10*i
+    mj = [mj, j].min  if a[j] >= M
+  }
+}
+p mj
+
+a = Array.new(L+1, 0)
+mj = 1_0000_0000
+
+1.upto(L) { |i|
+  0.upto(50) { |jj|
+    j = i+i*jj
+    break if j > L
+    a[j] += 11*i
+    mj = [mj, j].min  if a[j] >= M
+  }
+}
+p mj