#40609: python


mountainwu14@gmail.com (吳小四)

學校 : 不指定學校
編號 : 187101
來源 : [123.193.136.130]
最後登入時間 :
2024-07-25 20:25:33
d123. 11063 - B2-Sequence -- UVa11063 | From: [122.121.12.55] | 發表日期 : 2024-05-31 19:04

count=1
while True:
    seen=set()
    n=int(input())
    A=list(map(int,input().split()));flag=True
    for i in range(len(A)):
        ans=A[i]
        for j in range(i+1,len(A)):
            ans+=A[j]#;print(seen)
            if ans in seen:
                #print("It is not a B2-Sequence.")
                flag=False
            else:
                seen.add ( A[i]+A[j] )
        if flag==False: print("Case #"+"{}".format(count)+": It is not a B2-Sequence");break
                
    if flag==True:print("Case #"+"{}".format(count)+": It is a B2-Sequence")
    count+=1 
               

 
ZeroJudge Forum