結果

問題 No.1884 Sequence
ユーザー k_o_pasturek_o_pasture
提出日時 2022-03-25 22:17:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 494 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-10-14 06:11:17
合計ジャッジ時間 10,117 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 418 ms
34,280 KB
testcase_11 AC 409 ms
34,280 KB
testcase_12 AC 89 ms
13,548 KB
testcase_13 AC 92 ms
13,932 KB
testcase_14 AC 93 ms
14,264 KB
testcase_15 AC 278 ms
23,380 KB
testcase_16 AC 416 ms
34,272 KB
testcase_17 AC 163 ms
20,664 KB
testcase_18 AC 205 ms
24,780 KB
testcase_19 AC 175 ms
21,616 KB
testcase_20 AC 234 ms
21,076 KB
testcase_21 AC 186 ms
19,416 KB
testcase_22 AC 253 ms
22,204 KB
testcase_23 AC 431 ms
32,720 KB
testcase_24 AC 426 ms
34,272 KB
testcase_25 AC 398 ms
32,720 KB
testcase_26 AC 433 ms
34,256 KB
testcase_27 AC 100 ms
14,420 KB
testcase_28 AC 105 ms
14,292 KB
testcase_29 AC 102 ms
14,420 KB
testcase_30 AC 105 ms
14,420 KB
testcase_31 AC 227 ms
21,120 KB
testcase_32 WA -
testcase_33 AC 194 ms
34,432 KB
testcase_34 AC 193 ms
34,428 KB
testcase_35 AC 120 ms
16,028 KB
testcase_36 AC 180 ms
26,648 KB
testcase_37 AC 237 ms
34,304 KB
testcase_38 AC 232 ms
33,908 KB
testcase_39 AC 148 ms
18,620 KB
testcase_40 AC 157 ms
19,516 KB
testcase_41 AC 356 ms
28,836 KB
testcase_42 AC 362 ms
28,792 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 and s >= 0:
	print('Yes')
else:
	print('No')
0