Submission #876910


Source Code Expand

def solve():
    n = input()
    ans = 0
    for i in range(2 ** (len(n) - 1)):
        insertcount = 0
        count = 0
        line = list(n)
        j = i
        while j > 0:
            if j & 1 == 1:
                line.insert(1 + count + insertcount, "+")
                insertcount += 1
            count += 1
            j >>= 1
        ans += eval("".join(line))
    print(ans)

if __name__=="__main__":
    solve()

Submission Info

Submission Time
Task C - Many Formulas
User yumechi
Language Python (3.4.3)
Score 300
Code Size 448 Byte
Status AC
Exec Time 55 ms
Memory 3064 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status AC
AC × 10
Set Name Test Cases
Sample
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt
Case Name Status Exec Time Memory
01.txt AC 52 ms 3064 KB
02.txt AC 52 ms 3064 KB
03.txt AC 53 ms 3064 KB
04.txt AC 37 ms 3064 KB
05.txt AC 39 ms 3064 KB
06.txt AC 39 ms 3064 KB
07.txt AC 52 ms 3064 KB
08.txt AC 52 ms 3064 KB
09.txt AC 37 ms 3064 KB
10.txt AC 38 ms 3064 KB
sample_01.txt AC 39 ms 3064 KB
sample_02.txt AC 55 ms 3064 KB