about summary refs log tree commit diff
path: root/daily/285easy/2dec.py
diff options
context:
space:
mode:
Diffstat (limited to 'daily/285easy/2dec.py')
-rwxr-xr-xdaily/285easy/2dec.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/daily/285easy/2dec.py b/daily/285easy/2dec.py
new file mode 100755
index 0000000..a0b6bb2
--- /dev/null
+++ b/daily/285easy/2dec.py
@@ -0,0 +1,13 @@
+#!/usr/bin/env python3
+
+tmp = 0
+
+with open('2dec.inp') as fi, open('2dec.out', 'w') as fo:
+    for line in fi:
+        l = []
+        for n in line.split():
+            tmp += int(n)
+            if n != '255':
+                l.append(str(tmp))
+                tmp = 0
+        fo.write(' '.join(l) + '\n')