結果

問題 No.2451 Redistribute Integers
ユーザー KoiKoi
提出日時 2023-09-01 21:27:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 157,892 KB
最終ジャッジ日時 2024-06-11 10:58:54
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
A.sort()
s=A[0]
is_ok=True
for i in range(N):
    if((A[i]-A[0])%N!=0):
        is_ok=False
        break
if(is_ok):
    print("Yes")
else:
    print("No")
0