note

math.inf を使ったらREした。 これは3.5からでAtCoderは現在3.4.3。 CE扱いなら不満はないがREなのは不満。

implementation

#!/usr/bin/env python3
acc = float('inf')
for _ in range(int(input())):
    s = input()
    cnt = 0
    while s.endswith('0'):
        s = s[: - 1]
        cnt += 1
    acc = min(acc, cnt)
print(acc)