結果

問題 No.1884 Sequence
ユーザー 330Xs330Xs
提出日時 2022-04-02 19:02:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 588 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 133,284 KB
最終ジャッジ日時 2024-05-01 16:14:31
合計ジャッジ時間 6,128 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,828 KB
testcase_01 AC 36 ms
52,696 KB
testcase_02 AC 37 ms
53,792 KB
testcase_03 AC 37 ms
52,560 KB
testcase_04 AC 35 ms
53,508 KB
testcase_05 AC 36 ms
52,524 KB
testcase_06 AC 36 ms
52,804 KB
testcase_07 AC 37 ms
51,940 KB
testcase_08 AC 35 ms
53,012 KB
testcase_09 AC 35 ms
52,640 KB
testcase_10 AC 190 ms
133,284 KB
testcase_11 AC 187 ms
133,132 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 67 ms
91,772 KB
testcase_15 AC 122 ms
107,616 KB
testcase_16 AC 160 ms
131,460 KB
testcase_17 AC 95 ms
109,368 KB
testcase_18 AC 105 ms
107,716 KB
testcase_19 AC 98 ms
108,744 KB
testcase_20 AC 110 ms
106,688 KB
testcase_21 AC 95 ms
107,888 KB
testcase_22 AC 115 ms
107,084 KB
testcase_23 AC 163 ms
131,748 KB
testcase_24 AC 161 ms
131,500 KB
testcase_25 AC 164 ms
130,592 KB
testcase_26 AC 163 ms
131,800 KB
testcase_27 AC 69 ms
97,584 KB
testcase_28 AC 69 ms
97,820 KB
testcase_29 AC 68 ms
97,808 KB
testcase_30 AC 68 ms
96,792 KB
testcase_31 AC 104 ms
106,296 KB
testcase_32 AC 156 ms
130,292 KB
testcase_33 AC 122 ms
129,368 KB
testcase_34 AC 117 ms
129,908 KB
testcase_35 AC 75 ms
102,080 KB
testcase_36 AC 109 ms
114,416 KB
testcase_37 AC 117 ms
129,528 KB
testcase_38 AC 118 ms
127,924 KB
testcase_39 AC 81 ms
107,036 KB
testcase_40 AC 87 ms
107,844 KB
testcase_41 AC 150 ms
120,980 KB
testcase_42 AC 153 ms
120,628 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