結果

問題 No.1884 Sequence
ユーザー 330Xs330Xs
提出日時 2022-04-02 18:48:35
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 532 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 133,480 KB
最終ジャッジ日時 2024-11-21 21:05:16
合計ジャッジ時間 7,123 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 38 ms
51,456 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 36 ms
51,584 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 194 ms
133,480 KB
testcase_11 AC 199 ms
132,844 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 79 ms
90,752 KB
testcase_15 AC 140 ms
107,392 KB
testcase_16 AC 178 ms
131,576 KB
testcase_17 AC 109 ms
109,184 KB
testcase_18 AC 118 ms
107,392 KB
testcase_19 AC 111 ms
108,544 KB
testcase_20 AC 126 ms
106,368 KB
testcase_21 AC 111 ms
107,776 KB
testcase_22 AC 131 ms
106,624 KB
testcase_23 AC 180 ms
131,436 KB
testcase_24 AC 178 ms
131,828 KB
testcase_25 AC 177 ms
130,788 KB
testcase_26 AC 179 ms
131,484 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 82 ms
96,512 KB
testcase_30 AC 83 ms
96,512 KB
testcase_31 AC 117 ms
105,984 KB
testcase_32 AC 168 ms
130,492 KB
testcase_33 AC 135 ms
129,712 KB
testcase_34 AC 132 ms
129,336 KB
testcase_35 AC 88 ms
100,608 KB
testcase_36 AC 126 ms
113,816 KB
testcase_37 AC 135 ms
129,956 KB
testcase_38 AC 133 ms
128,008 KB
testcase_39 AC 94 ms
106,496 KB
testcase_40 AC 100 ms
107,648 KB
testcase_41 AC 165 ms
120,536 KB
testcase_42 AC 161 ms
120,408 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')
			exit(0)
		else:
			cnt += diff[i] // diff[0] - 1
	if(zero_cnt >= cnt):
		print('Yes')
	else:
		print('No')
else:
	if(diff[-1] == 0):
		print('Yes')
	else:
		print('No')
0