n=int(input()) a=list(map(int,input().split())) ok=True for i in range(n-1): ok&=(a[i+1]-a[i])%n==0 print('Yes' if ok else 'No')