結果

問題 No.1884 Sequence
ユーザー k_o_pasturek_o_pasture
提出日時 2022-03-25 21:54:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 483 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,408 KB
最終ジャッジ日時 2024-10-14 05:50:20
合計ジャッジ時間 9,788 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 WA -
testcase_10 AC 372 ms
33,936 KB
testcase_11 AC 376 ms
34,128 KB
testcase_12 AC 85 ms
13,680 KB
testcase_13 AC 90 ms
13,808 KB
testcase_14 AC 94 ms
14,264 KB
testcase_15 AC 251 ms
23,384 KB
testcase_16 AC 380 ms
34,280 KB
testcase_17 AC 149 ms
20,564 KB
testcase_18 AC 196 ms
24,660 KB
testcase_19 AC 166 ms
21,488 KB
testcase_20 AC 210 ms
21,084 KB
testcase_21 AC 174 ms
19,420 KB
testcase_22 AC 233 ms
22,076 KB
testcase_23 AC 388 ms
34,132 KB
testcase_24 AC 387 ms
34,408 KB
testcase_25 AC 349 ms
33,936 KB
testcase_26 AC 376 ms
32,860 KB
testcase_27 AC 96 ms
14,776 KB
testcase_28 AC 99 ms
14,908 KB
testcase_29 AC 97 ms
14,780 KB
testcase_30 AC 98 ms
14,780 KB
testcase_31 AC 213 ms
21,248 KB
testcase_32 WA -
testcase_33 AC 185 ms
32,724 KB
testcase_34 AC 193 ms
32,856 KB
testcase_35 AC 114 ms
16,032 KB
testcase_36 AC 181 ms
26,632 KB
testcase_37 AC 237 ms
32,724 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 326 ms
28,832 KB
testcase_42 AC 324 ms
28,956 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)

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

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