結果

問題 No.1884 Sequence
ユーザー 330Xs330Xs
提出日時 2022-04-02 18:42:09
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 520 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 135,872 KB
最終ジャッジ日時 2024-11-21 20:55:33
合計ジャッジ時間 8,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 37 ms
51,584 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 WA -
testcase_09 RE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 71 ms
91,264 KB
testcase_15 AC 126 ms
107,520 KB
testcase_16 AC 161 ms
131,584 KB
testcase_17 AC 98 ms
109,440 KB
testcase_18 AC 106 ms
107,520 KB
testcase_19 AC 100 ms
108,692 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 166 ms
131,776 KB
testcase_24 AC 164 ms
131,528 KB
testcase_25 AC 165 ms
130,924 KB
testcase_26 AC 164 ms
131,360 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 72 ms
96,588 KB
testcase_30 WA -
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 122 ms
130,064 KB
testcase_34 AC 124 ms
129,932 KB
testcase_35 AC 76 ms
100,480 KB
testcase_36 AC 114 ms
114,128 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 155 ms
120,608 KB
testcase_42 AC 160 ms
120,532 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