結果

問題 No.1884 Sequence
ユーザー square1001square1001
提出日時 2022-03-25 21:27:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,436 KB
最終ジャッジ日時 2024-10-14 05:15:47
合計ジャッジ時間 8,337 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 329 ms
34,408 KB
testcase_11 AC 318 ms
34,400 KB
testcase_12 AC 66 ms
13,672 KB
testcase_13 AC 69 ms
13,936 KB
testcase_14 AC 70 ms
14,384 KB
testcase_15 AC 213 ms
23,252 KB
testcase_16 AC 337 ms
34,400 KB
testcase_17 AC 124 ms
20,556 KB
testcase_18 AC 173 ms
24,784 KB
testcase_19 AC 140 ms
21,488 KB
testcase_20 AC 177 ms
20,956 KB
testcase_21 AC 141 ms
19,416 KB
testcase_22 AC 196 ms
22,188 KB
testcase_23 AC 324 ms
33,772 KB
testcase_24 AC 339 ms
34,272 KB
testcase_25 AC 338 ms
33,772 KB
testcase_26 AC 333 ms
34,256 KB
testcase_27 AC 78 ms
14,904 KB
testcase_28 AC 77 ms
14,776 KB
testcase_29 AC 78 ms
14,776 KB
testcase_30 AC 78 ms
14,904 KB
testcase_31 AC 176 ms
21,116 KB
testcase_32 AC 330 ms
33,020 KB
testcase_33 AC 134 ms
34,436 KB
testcase_34 AC 131 ms
34,300 KB
testcase_35 AC 84 ms
15,684 KB
testcase_36 AC 120 ms
26,508 KB
testcase_37 AC 240 ms
34,304 KB
testcase_38 AC 229 ms
34,036 KB
testcase_39 AC 112 ms
18,740 KB
testcase_40 AC 122 ms
19,520 KB
testcase_41 AC 278 ms
28,956 KB
testcase_42 AC 262 ms
28,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

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

v = []
for i in A:
	if i != 0:
		v.append(i)

v.sort()
if len(v) == 0:
	print("Yes")
elif v[0] == v[-1]:
	print("Yes")
else:
	g = v[1] - v[0]
	flag = True
	for i in range(1, len(v)):
		g = math.gcd(g, v[i] - v[i - 1])
		if v[i] == v[i - 1]:
			flag = False
	if not flag:
		print("No")
	elif (v[-1] - v[0]) // g <= N - 1:
		print("Yes")
	else:
		print("No")
0