a,b=map(int,input().split()) L=list(map(int,input().split())) R=list(map(int,input().split())) c=sum(R) if b%c==0: print(b//c) else: print(b//c+1)