結果

問題 No.1586 Equal Array
ユーザー kept1994kept1994
提出日時 2021-08-25 01:49:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 1,000 ms
コード長 266 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 85,372 KB
最終ジャッジ日時 2024-11-15 16:39:25
合計ジャッジ時間 2,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,488 KB
testcase_01 AC 35 ms
53,316 KB
testcase_02 AC 36 ms
52,960 KB
testcase_03 AC 36 ms
52,248 KB
testcase_04 AC 58 ms
80,220 KB
testcase_05 AC 56 ms
79,456 KB
testcase_06 AC 63 ms
84,156 KB
testcase_07 AC 63 ms
83,996 KB
testcase_08 AC 63 ms
84,112 KB
testcase_09 AC 62 ms
84,260 KB
testcase_10 AC 63 ms
84,668 KB
testcase_11 AC 36 ms
52,828 KB
testcase_12 AC 35 ms
52,188 KB
testcase_13 AC 62 ms
83,548 KB
testcase_14 AC 63 ms
84,104 KB
testcase_15 AC 61 ms
83,696 KB
testcase_16 AC 63 ms
84,696 KB
testcase_17 AC 36 ms
52,820 KB
testcase_18 AC 64 ms
84,832 KB
testcase_19 AC 63 ms
85,372 KB
testcase_20 AC 35 ms
52,800 KB
testcase_21 AC 34 ms
52,624 KB
testcase_22 AC 34 ms
52,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N = int(input())
    A = list(map(int, input().split()))
    tot = 0
    for aa in A[1:]:
        tot += (aa - A[0]) % N
        tot %= N
    print("Yes" if tot == 0 else "No")

if __name__ == '__main__':
    main()
0