#31616: python TLE.....求大老幫助


yuxuan0912 (李毓萱Laura)

學校 : 不指定學校
編號 : 197335
來源 : [1.34.135.237]
最後登入時間 :
2023-12-07 21:47:26
a291. nAnB problem | From: [1.34.135.237] | 發表日期 : 2022-08-10 19:30

while True:
    try:
        ans=list(map(int,input().split()))
        x=int(input())
        for i in range(x):
            a=0
            b=0
            anscopy=ans
            tries=list(map(int,input().split()))
            for n in range(4):
                print(anscopy[n],tries[n])
                if anscopy[n]==tries[n]:
                    a+=1
                    tries[n]=-1 
                    anscopy[n]=-1
            anscopy_=set(anscopy)
            tries_=set(tries)
            if -1 in tries_:
                tries_.remove(-1)
            if -1 in anscopy_:
                anscopy_.remove(-1)
            b+=sum([y in anscopy_ for y in tries_])
            print(a,"A",b,"B")
    except EOFError:
        break

 
ZeroJudge Forum