n = int(input()) a = list(map(int, input().split())) for i in range(n-1): if (a[i] - a[i+1]) % n: print("No") exit() print("Yes")