結果

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

ソースコード

diff #

def solve():
	N = int(input())
	S = list(map(int, input().split()))
	for i in range(1, N):
		if S[i] % N != S[0] % N:
			return 'No'
	return 'Yes'
print(solve())
0