blob: dfad57e45580bd4efad344d63ae9ef10905295a3 (
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
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
|
class CPU
def initialize
@x = 1
@cycle = 1
@iq = []
end
attr_reader :x, :cycle
def enq(op, arg = 0)
@iq << [
arg,
case op
when 'noop'; 1
when 'addx'; 2
end
]
end
def done?
@iq.empty?
end
def clock
istr = @iq[0]
istr[1] -= 1
if istr[1] == 0
@x += istr[0]
@iq.shift
end
@cycle += 1
end
end
cpu = CPU.new
istrs = $stdin.readlines.map(&:strip).map(&:split)
istrs.each do |istr|
cpu.enq(istr[0], istr[1]&.to_i || 0)
end
strsum = 0
until cpu.done?
c = cpu.cycle
x = cpu.x
strsum += (c * x) if (c - 20) % 40 == 0
cpu.clock
end
puts strsum
|