diff options
author | tomsmeding <tom.smeding@gmail.com> | 2016-12-11 21:18:47 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2016-12-11 21:18:47 +0100 |
commit | 97b4c5d86cc12447ac6845e25a863e26a88aec35 (patch) | |
tree | 75d65b173b02ce590e9f845addf762ba2c473f78 /8a.py | |
parent | 866bfb0aca286da74d2c82cc88ffaf08e6068193 (diff) |
7b 8 9a
Diffstat (limited to '8a.py')
-rwxr-xr-x | 8a.py | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -0,0 +1,31 @@ +#!/usr/bin/env python3 + +import sys + +WID=50 +HEI=6 + +screen=[[0]*WID for _ in range(HEI)] + +for line in sys.stdin: + line=line.split(" ") + if line[0]=="rect": + w,h=[int(x) for x in line[1].split("x")] + for y in range(h): + screen[y][:w]=[1]*w + elif line[0]=="rotate" and line[1]=="row": + y=int(line[2][2:]) + off=int(line[4])%WID + part=screen[y][:-off] + screen[y][:off]=screen[y][-off:] + screen[y][off:]=part + elif line[0]=="rotate" and line[1]=="column": + x=int(line[2][2:]) + off=int(line[4])%HEI + part=[row[x] for row in screen[:-off]] + for y in range(off): + screen[y][x]=screen[-off+y][x] + for y in range(len(part)): + screen[off+y][x]=part[y] + +print(sum(map(sum,screen))) |