diff options
author | tomsmeding <tom.smeding@gmail.com> | 2017-12-02 09:30:07 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2017-12-02 09:30:07 +0100 |
commit | 2c1dccf57d7ad5e25e79063dea41fd7bfa9d9ac6 (patch) | |
tree | 6c36355ef1a475f2b7cf388402afc96a16588d3d /9a.py | |
parent | 2d02f553aa4cc4ded630628eccdf34f55937cee5 (diff) |
Move 2016 to its own folder
Diffstat (limited to '9a.py')
-rwxr-xr-x | 9a.py | 21 |
1 files changed, 0 insertions, 21 deletions
@@ -1,21 +0,0 @@ -#!/usr/bin/env python3 - -import sys - -def decomplen(s): - total=0 - i=0 - while i<len(s): - if s[i]=="(": - closeidx=s.index(")",i+1) - marker=[int(x) for x in s[i+1:closeidx].split("x")] - repstr=s[closeidx+1:closeidx+1+marker[0]] - total+=marker[1]*len(repstr) - i=closeidx+1+marker[0] - else: - total+=1 - i+=1 - - return total - -print(decomplen(sys.stdin.readline()[:-1])) |