-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp10.py
51 lines (37 loc) · 848 Bytes
/
p10.py
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
# https://adventofcode.com/2022/day/10
# Created by: Menaka S. 10 Dec 2022
import sys
cycle = 1
X = 1
lastX = 1
total = 0
here = 0
grid = ['.' for i in range(0,240)]
def drawGrid():
for i in range(0,6):
line = ''.join(grid[i*40: (i*40)+40])
print(line)
def drawPos(cycle,X):
if cycle%40 in (X-1,X,X+1):
grid[cycle] = '#'
drawPos(0,X)
drawPos(1,X)
for line in sys.stdin:
line = line.strip()
if line == 'noop':
cycle +=1
drawPos(cycle,X)
else: # addx
(_, vl) = line.split(' ')
lastX = X
X += int(vl)
cycle +=2
drawPos(cycle-1,X)
drawPos(cycle,X)
if cycle%40 == 20:
total += (cycle * X)
here += 40
elif cycle > here and cycle%40 == 21:
total += ((cycle-1) * lastX)
print(total)
drawGrid()