如何修复“ EOFError:读取行时出现EOF”?

时间:2019-04-24 14:34:56

标签: python-3.6 eof eoferror

将代码提交给在线检查器时,出现此EOfError。如何解决此错误?

我以前使用的是int数据类型,但我需要10 ^ 5,所以我也进行了更改。

给出的约束是:

  • 1≤n≤10^ 5
  • 1≤麻木

实际问题链接为:https://www.codechef.com/problems/MAX2

n=int(input())
numb=[100000]
numb=input()
x=n
counter= 0
if numb[x-1]=='1':
    print(0)
else:
    while numb[x-1]=='0':
        counter=counter+1

        x=x-1

    print(counter)

0 个答案:

没有答案