結果

問題 No.1884 Sequence
ユーザー square1001square1001
提出日時 2022-03-25 21:24:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 369 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,272 KB
最終ジャッジ日時 2024-10-14 05:12:37
合計ジャッジ時間 8,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 WA -
testcase_10 AC 308 ms
34,272 KB
testcase_11 AC 306 ms
34,140 KB
testcase_12 AC 71 ms
13,420 KB
testcase_13 AC 75 ms
13,804 KB
testcase_14 AC 73 ms
14,132 KB
testcase_15 AC 205 ms
23,124 KB
testcase_16 AC 323 ms
34,140 KB
testcase_17 AC 121 ms
20,532 KB
testcase_18 AC 156 ms
24,528 KB
testcase_19 AC 131 ms
21,484 KB
testcase_20 AC 169 ms
20,696 KB
testcase_21 AC 135 ms
19,292 KB
testcase_22 AC 190 ms
21,820 KB
testcase_23 AC 327 ms
32,596 KB
testcase_24 AC 323 ms
34,136 KB
testcase_25 AC 333 ms
32,596 KB
testcase_26 AC 327 ms
33,992 KB
testcase_27 AC 82 ms
14,048 KB
testcase_28 AC 82 ms
13,792 KB
testcase_29 AC 82 ms
14,044 KB
testcase_30 AC 82 ms
13,796 KB
testcase_31 AC 174 ms
21,120 KB
testcase_32 WA -
testcase_33 AC 146 ms
32,592 KB
testcase_34 AC 139 ms
32,592 KB
testcase_35 AC 87 ms
15,896 KB
testcase_36 AC 129 ms
25,756 KB
testcase_37 AC 208 ms
32,724 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 260 ms
28,824 KB
testcase_42 AC 264 ms
28,700 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]
	for i in range(1, len(v)):
		g = math.gcd(g, v[i] - v[i - 1])
	if g == 0:
		print("No")
	elif (v[-1] - v[0]) // g <= N - 1:
		print("Yes")
	else:
		print("No")
0