結果

問題 No.2451 Redistribute Integers
ユーザー FromBooskaFromBooska
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 195 ms
152,504 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 42 ms
51,584 KB
testcase_07 AC 40 ms
51,456 KB
testcase_08 AC 166 ms
146,668 KB
testcase_09 AC 41 ms
51,456 KB
testcase_10 AC 43 ms
52,096 KB
testcase_11 AC 45 ms
52,480 KB
testcase_12 AC 97 ms
98,944 KB
testcase_13 AC 174 ms
153,652 KB
testcase_14 AC 174 ms
141,328 KB
testcase_15 AC 127 ms
108,860 KB
testcase_16 AC 120 ms
103,040 KB
testcase_17 AC 146 ms
128,172 KB
testcase_18 AC 173 ms
153,916 KB
testcase_19 AC 57 ms
68,480 KB
testcase_20 AC 154 ms
135,324 KB
testcase_21 AC 180 ms
153,984 KB
権限があれば一括ダウンロードができます

ソースコード

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