#44299: 輸入出錯 求解


moyao0907349805@gmail.com (阿維)

學校 : 不指定學校
編號 : 273912
來源 : [27.52.2.22]
最後登入時間 :
2024-11-24 10:33:38
a291. nAnB problem | From: [27.51.42.88] | 發表日期 : 2024-11-22 20:09

while True:
    try:

        ans=list(map(int, input().split()))
        time=int(input())

        for _ in range(time):
            ges=list(map(int, input().split()))
            a=0
            b=0
            box=[]
            for x,y in zip(ans,ges):
                if x==y:
                    a+=1
                    box.append(x)

            for z in box:
                while z in ges:
                    ges.remove(z)

            ans_box=ans[:]
            for i in ges[:]:
                if i in ans:
                    ges.remove(i)
                    b+=1
            print(f'{a}A{b}B')
        o=input('')
        if o=='':
            pass
        else:
            o=False

    except EOFError:
        break


Traceback (most recent call last): File "/15077955_a291/code_15077955.py", line 5, in time=int(input()) ValueError: invalid literal for int() with base 10: '7 2 0 5'
 
#44302: Re: 輸入出錯 求解


sam851015@gmail.com (多挖鼻孔有益身心健康)

學校 : 不指定學校
編號 : 277705
來源 : [123.192.228.253]
最後登入時間 :
2024-11-24 19:03:01
a291. nAnB problem | From: [123.192.228.253] | 發表日期 : 2024-11-22 21:35

測資裡面有空白行,記得要抓出來處理

範例應該就可以看出來了,有一個很明顯的空行

 
ZeroJudge Forum