aboutsummaryrefslogtreecommitdiff
path: root/day14/part1
blob: 2f463755cd3a14e37751c16eb39448ca1ea0acd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env ruby

input = $stdin.readlines[0].strip.to_i

scores = [3, 7]
elf1 = 0
elf2 = 1

loop do
  se1 = scores[elf1]
  se2 = scores[elf2]

  sum = se1 + se2
  scores += sum.to_s.chars.map(&:to_i)
  
  slen = scores.length

  elf1 = (elf1 + 1 + se1) % slen
  elf2 = (elf2 + 1 + se2) % slen

  break if slen > (input + 10)
end

puts scores[input...(input+10)].join