結果

問題 No.1884 Sequence
ユーザー 330Xs330Xs
提出日時 2022-04-02 18:42:09
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 520 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 135,936 KB
最終ジャッジ日時 2024-05-01 15:50:45
合計ジャッジ時間 9,223 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 35 ms
52,480 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 WA -
testcase_09 RE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 73 ms
90,880 KB
testcase_15 AC 129 ms
107,436 KB
testcase_16 AC 169 ms
131,448 KB
testcase_17 AC 99 ms
109,276 KB
testcase_18 AC 106 ms
107,376 KB
testcase_19 AC 100 ms
109,056 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 170 ms
131,780 KB
testcase_24 AC 166 ms
132,300 KB
testcase_25 AC 165 ms
130,856 KB
testcase_26 AC 162 ms
131,356 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 71 ms
96,768 KB
testcase_30 WA -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 121 ms
129,988 KB
testcase_34 AC 121 ms
129,652 KB
testcase_35 AC 75 ms
100,992 KB
testcase_36 AC 109 ms
114,148 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 152 ms
120,492 KB
testcase_42 AC 149 ms
120,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
lis = list(map(int,input().split()))

lis2 = []
zero_cnt = 0
for i in range(n):
	if(lis[i] != 0):
		lis2.append(lis[i])
	else:
		zero_cnt += 1
lis2.sort()

diff = []
for i in range(len(lis2)-1):
	diff.append(lis2[i+1] - lis2[i])
diff.sort()

if(diff[0] != 0):
	cnt = 0
	for i in range(1,len(diff)):
		if(diff[i] % diff[0] != 0):
			print('No')
		else:
			cnt += diff[i] // diff[0] - 1
	if(zero_cnt >= cnt):
		print('Yes')
	else:
		print('No')
else:
	if(diff[-1] == 0):
		print('Yes')
	else:
		prnt('No')
0