結果

問題 No.1884 Sequence
ユーザー 330Xs330Xs
提出日時 2022-04-02 19:02:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 588 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 133,408 KB
最終ジャッジ日時 2024-11-21 21:25:03
合計ジャッジ時間 7,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 43 ms
51,584 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 41 ms
51,712 KB
testcase_09 AC 44 ms
51,840 KB
testcase_10 AC 212 ms
133,408 KB
testcase_11 AC 208 ms
132,824 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 81 ms
91,392 KB
testcase_15 AC 143 ms
107,008 KB
testcase_16 AC 181 ms
131,284 KB
testcase_17 AC 114 ms
109,056 KB
testcase_18 AC 125 ms
107,392 KB
testcase_19 AC 117 ms
108,544 KB
testcase_20 AC 129 ms
106,752 KB
testcase_21 AC 112 ms
108,032 KB
testcase_22 AC 134 ms
106,624 KB
testcase_23 AC 186 ms
131,808 KB
testcase_24 AC 185 ms
131,560 KB
testcase_25 AC 185 ms
130,876 KB
testcase_26 AC 188 ms
131,340 KB
testcase_27 AC 83 ms
96,640 KB
testcase_28 AC 82 ms
96,768 KB
testcase_29 AC 84 ms
96,384 KB
testcase_30 AC 85 ms
96,256 KB
testcase_31 AC 125 ms
106,304 KB
testcase_32 AC 175 ms
130,604 KB
testcase_33 AC 140 ms
129,832 KB
testcase_34 AC 138 ms
130,028 KB
testcase_35 AC 91 ms
101,120 KB
testcase_36 AC 131 ms
113,704 KB
testcase_37 AC 142 ms
129,836 KB
testcase_38 AC 141 ms
128,000 KB
testcase_39 AC 99 ms
106,880 KB
testcase_40 AC 105 ms
108,160 KB
testcase_41 AC 170 ms
120,684 KB
testcase_42 AC 169 ms
120,548 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(len(diff) > 0):
	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')
else:
	print('Yes')
0