Submission #100290

# Submission time Handle Problem Language Result Execution time Memory
100290 2019-03-10T09:19:53 Z tnbs10 Lun (COCI19_lun) Python 3
Compilation error
0 ms 0 KB
n = int(input())
s = list(input())
for i in range(n):
    if s[i].isdigit():
        s[i] = int(s[i])
s.reverse()
x = s.index("x")
for i in range(10):
    a = s[:]
    a[x] = i
    zbroj = 0
    for j in range(1, n):
        if j % 2:
            a[j] = a[j] * 2
            if a[j] >= 10:
                a[j] = a[j] % 10 + a[j] // 10
        zbroj += a[j]
    if (zbroj * 9) % 10 == a[0]:
      print(i)
      break

Compilation message

Sorry: IndentationError: unindent does not match any outer indentation level (lun.py, line 19)