結果

問題 No.2451 Redistribute Integers
ユーザー FromBooska
提出日時 2023-09-02 08:19:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 153,984 KB
最終ジャッジ日時 2024-06-11 11:06:35
合計ジャッジ時間 3,755 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

# あら、WAだった
# AiとAjの差はNである必要ある、操作によって差はN動くから
# を加えてみるか

N = int(input())
A = list(map(int, input().split()))
sumA = sum(A)
diff_test = True
for i in range(1, N):
    if (A[i]-A[i-1])%N != 0:
        diff_test = False
if sumA%N == 0 and diff_test == True:
    print('Yes')
else:
    print('No')
0