結果

問題 No.2451 Redistribute Integers
ユーザー L1lykn1ghtL1lykn1ght
提出日時 2023-09-02 12:33:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 154,220 KB
最終ジャッジ日時 2024-06-11 11:06:51
合計ジャッジ時間 3,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,712 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 34 ms
51,456 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 232 ms
154,084 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 34 ms
51,584 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 177 ms
143,508 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 88 ms
100,224 KB
testcase_13 AC 184 ms
153,132 KB
testcase_14 AC 190 ms
154,220 KB
testcase_15 AC 118 ms
126,464 KB
testcase_16 AC 105 ms
116,864 KB
testcase_17 AC 146 ms
129,024 KB
testcase_18 AC 180 ms
153,616 KB
testcase_19 AC 49 ms
67,712 KB
testcase_20 AC 157 ms
133,504 KB
testcase_21 AC 183 ms
152,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

read = sys.stdin.read
readline = sys.stdin.readline
readlines = sys.stdin.readlines


N, *A = map(int, read().split())

sm = sum(A)
if sm % N:
    print('No')
    sys.exit()

num = sm // N
c1 = 0
c2 = 0
for i in range(1, N):
    if abs(A[i] - A[i - 1]) % N == 0:
        continue
    else:
        print('No')
        break
else:
    print('Yes')
0