結果

問題 No.1884 Sequence
ユーザー ytftytft
提出日時 2022-03-28 16:02:12
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 403 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,568 KB
最終ジャッジ日時 2024-11-07 07:36:41
合計ジャッジ時間 8,287 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 42 ms
52,352 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 RE -
testcase_10 AC 159 ms
105,928 KB
testcase_11 AC 159 ms
106,436 KB
testcase_12 AC 75 ms
89,088 KB
testcase_13 AC 80 ms
92,928 KB
testcase_14 AC 86 ms
92,544 KB
testcase_15 AC 135 ms
109,568 KB
testcase_16 AC 160 ms
105,812 KB
testcase_17 AC 107 ms
107,520 KB
testcase_18 AC 114 ms
109,568 KB
testcase_19 AC 108 ms
105,344 KB
testcase_20 AC 130 ms
108,288 KB
testcase_21 AC 122 ms
107,136 KB
testcase_22 AC 132 ms
108,800 KB
testcase_23 AC 159 ms
106,060 KB
testcase_24 AC 159 ms
106,200 KB
testcase_25 AC 158 ms
105,032 KB
testcase_26 AC 161 ms
106,556 KB
testcase_27 AC 84 ms
97,152 KB
testcase_28 RE -
testcase_29 AC 84 ms
97,408 KB
testcase_30 AC 85 ms
97,152 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 118 ms
104,080 KB
testcase_34 AC 121 ms
104,204 KB
testcase_35 AC 96 ms
100,992 KB
testcase_36 AC 124 ms
101,888 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 155 ms
102,008 KB
testcase_42 AC 155 ms
101,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,bisect
input=lambda:sys.stdin.readline().rstrip()
def gcd(a,b):
	m,M=min(a,b),max(a,b)
	return M if m==0 else gcd(m,M%m)
N=int(input())
A=sorted(list(map(int,input().split())))
ind=bisect.bisect_right(A,0)
d,flg=0,0
for i in range(ind,N-1):
	d=gcd(d,A[i+1]-A[i])
	flg|=A[i]==A[i-1]
if flg:
	print(['Yes','No'][d])
elif ind==N:
	print('Yes')
else:
	print(['Yes','No'][(A[-1]-A[ind])//d+1-N>0])
0