結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 36 ms
51,940 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 35 ms
51,712 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 36 ms
51,712 KB
testcase_09 AC 35 ms
52,352 KB
testcase_10 AC 181 ms
133,276 KB
testcase_11 AC 183 ms
133,296 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 68 ms
90,496 KB
testcase_15 AC 119 ms
107,136 KB
testcase_16 AC 156 ms
131,188 KB
testcase_17 AC 95 ms
108,928 KB
testcase_18 AC 105 ms
107,648 KB
testcase_19 AC 97 ms
108,928 KB
testcase_20 AC 107 ms
105,984 KB
testcase_21 AC 96 ms
107,892 KB
testcase_22 AC 116 ms
106,880 KB
testcase_23 AC 158 ms
131,440 KB
testcase_24 AC 157 ms
131,576 KB
testcase_25 AC 157 ms
130,536 KB
testcase_26 AC 164 ms
131,356 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 68 ms
96,768 KB
testcase_30 AC 70 ms
96,128 KB
testcase_31 AC 104 ms
106,360 KB
testcase_32 AC 150 ms
130,044 KB
testcase_33 AC 119 ms
129,464 KB
testcase_34 AC 116 ms
129,788 KB
testcase_35 AC 74 ms
100,864 KB
testcase_36 AC 108 ms
114,072 KB
testcase_37 AC 121 ms
129,308 KB
testcase_38 AC 118 ms
128,088 KB
testcase_39 AC 83 ms
106,496 KB
testcase_40 AC 85 ms
107,696 KB
testcase_41 AC 146 ms
120,564 KB
testcase_42 AC 147 ms
119,896 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