結果

問題 No.1884 Sequence
ユーザー shobonvipshobonvip
提出日時 2022-03-25 22:48:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 132,060 KB
最終ジャッジ日時 2024-10-14 06:48:39
合計ジャッジ時間 6,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 38 ms
52,608 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 203 ms
132,012 KB
testcase_11 AC 199 ms
132,052 KB
testcase_12 AC 69 ms
89,344 KB
testcase_13 AC 70 ms
92,288 KB
testcase_14 AC 80 ms
92,032 KB
testcase_15 AC 126 ms
107,648 KB
testcase_16 AC 171 ms
131,816 KB
testcase_17 AC 101 ms
109,824 KB
testcase_18 AC 111 ms
108,032 KB
testcase_19 AC 98 ms
109,312 KB
testcase_20 AC 116 ms
106,880 KB
testcase_21 AC 102 ms
108,032 KB
testcase_22 AC 121 ms
107,024 KB
testcase_23 AC 173 ms
131,852 KB
testcase_24 AC 174 ms
131,688 KB
testcase_25 AC 171 ms
130,776 KB
testcase_26 AC 174 ms
132,060 KB
testcase_27 AC 75 ms
97,024 KB
testcase_28 AC 76 ms
96,512 KB
testcase_29 AC 76 ms
96,768 KB
testcase_30 AC 76 ms
96,896 KB
testcase_31 AC 115 ms
106,880 KB
testcase_32 AC 170 ms
130,428 KB
testcase_33 AC 129 ms
130,084 KB
testcase_34 AC 132 ms
130,084 KB
testcase_35 AC 83 ms
101,760 KB
testcase_36 AC 122 ms
114,592 KB
testcase_37 AC 135 ms
130,216 KB
testcase_38 AC 137 ms
128,116 KB
testcase_39 AC 103 ms
109,176 KB
testcase_40 AC 98 ms
107,776 KB
testcase_41 AC 157 ms
120,616 KB
testcase_42 AC 157 ms
120,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())
a = list(map(int,input().split()))

b = []
c = []
zeros = 0

for i in range(n):
	if a[i] == 0:
		zeros += 1
	else:
		b.append(a[i])

b.sort()
zeromode = 0
for i in range(len(b) - 1):
	c.append(b[i+1] - b[i])
	if b[i+1] - b[i] == 0:
		zeromode = 1

g = 0
for i in c:
	g = math.gcd(g, i)

if g == 0:
	print("Yes")
elif len(b) == 1:
	print("Yes")
elif zeromode == 1:
	if max(b) == min(b):
		print("Yes")
	else:
		print("No")
else:
	targ = (max(b) - min(b))//g - (len(b) - 1)
	if targ <= zeros:
		print("Yes")
	else:
		print("No")
0