結果

問題 No.2451 Redistribute Integers
ユーザー ikoma
提出日時 2023-09-01 23:05:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 176,708 KB
最終ジャッジ日時 2024-06-11 11:04:58
合計ジャッジ時間 3,375 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def solve():
    N=int(input())
    A=list(map(int,input().split()))
    sumA = sum(A)
    if sumA%N!=0:
        return False
    return len(set([a % N for a in A]))==1


print("Yes" if solve() else "No")
0