結果

問題 No.1884 Sequence
ユーザー k_o_pasturek_o_pasture
提出日時 2022-03-25 22:25:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 396 ms / 2,000 ms
コード長 557 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 34,288 KB
最終ジャッジ日時 2024-10-14 06:21:40
合計ジャッジ時間 9,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 373 ms
34,288 KB
testcase_11 AC 367 ms
34,160 KB
testcase_12 AC 83 ms
13,432 KB
testcase_13 AC 92 ms
13,692 KB
testcase_14 AC 90 ms
14,140 KB
testcase_15 AC 258 ms
23,248 KB
testcase_16 AC 381 ms
34,028 KB
testcase_17 AC 152 ms
20,444 KB
testcase_18 AC 200 ms
24,540 KB
testcase_19 AC 163 ms
21,500 KB
testcase_20 AC 214 ms
20,708 KB
testcase_21 AC 174 ms
19,304 KB
testcase_22 AC 237 ms
21,964 KB
testcase_23 AC 396 ms
32,612 KB
testcase_24 AC 377 ms
34,160 KB
testcase_25 AC 353 ms
32,620 KB
testcase_26 AC 387 ms
33,964 KB
testcase_27 AC 99 ms
14,532 KB
testcase_28 AC 96 ms
14,536 KB
testcase_29 AC 101 ms
14,792 KB
testcase_30 AC 103 ms
14,792 KB
testcase_31 AC 181 ms
21,004 KB
testcase_32 AC 308 ms
32,944 KB
testcase_33 AC 183 ms
34,184 KB
testcase_34 AC 185 ms
34,180 KB
testcase_35 AC 117 ms
15,784 KB
testcase_36 AC 169 ms
26,400 KB
testcase_37 AC 193 ms
34,180 KB
testcase_38 AC 179 ms
33,912 KB
testcase_39 AC 132 ms
18,628 KB
testcase_40 AC 136 ms
19,408 KB
testcase_41 AC 320 ms
28,716 KB
testcase_42 AC 314 ms
28,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *

N = int(input())
A = sorted(list(map(int, input().split())))

c = 0 # 0 の数
B = []
for a in A:
	if a == 0:
		c += 1
	else:
		B.append(a)
# print('c',c)
# print('B',B)

D = [] # 差

for i in range(1,len(B)):
	D.append(B[i]-B[i-1])
# print('D',D)

for d in D:
	if d == 0:
		if len(D) == len([d for d in D if d == 0]):
			print('Yes')
			exit()
		else:
			print('No')
			exit()

G = gcd(*D) # 差の最大公約数
# print('G',G)
s = 0
for d in D:
	s += (d // G) - 1
# print('s',s)
if c >= s and s >= 0:
	print('Yes')
else:
	print('No')
0