結果

問題 No.2451 Redistribute Integers
ユーザー sepa38sepa38
提出日時 2023-09-01 21:41:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 153,936 KB
最終ジャッジ日時 2024-06-11 11:01:50
合計ジャッジ時間 3,277 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 170 ms
152,636 KB
testcase_05 AC 35 ms
51,584 KB
testcase_06 AC 34 ms
51,712 KB
testcase_07 AC 36 ms
51,328 KB
testcase_08 AC 142 ms
146,052 KB
testcase_09 AC 35 ms
51,456 KB
testcase_10 AC 34 ms
51,712 KB
testcase_11 AC 34 ms
51,840 KB
testcase_12 AC 77 ms
97,280 KB
testcase_13 AC 152 ms
153,800 KB
testcase_14 AC 163 ms
141,208 KB
testcase_15 AC 108 ms
108,756 KB
testcase_16 AC 102 ms
103,168 KB
testcase_17 AC 128 ms
127,564 KB
testcase_18 AC 158 ms
153,936 KB
testcase_19 AC 47 ms
66,688 KB
testcase_20 AC 133 ms
134,448 KB
testcase_21 AC 157 ms
153,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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")
0