結果

問題 No.1884 Sequence
ユーザー ytftytft
提出日時 2022-03-28 16:03:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 110,080 KB
最終ジャッジ日時 2024-11-07 07:39:11
合計ジャッジ時間 6,469 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 45 ms
51,840 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 41 ms
52,224 KB
testcase_08 AC 42 ms
52,224 KB
testcase_09 AC 41 ms
52,352 KB
testcase_10 AC 156 ms
105,928 KB
testcase_11 AC 160 ms
105,932 KB
testcase_12 AC 74 ms
89,088 KB
testcase_13 AC 77 ms
93,056 KB
testcase_14 AC 85 ms
92,928 KB
testcase_15 AC 135 ms
109,568 KB
testcase_16 AC 156 ms
105,556 KB
testcase_17 AC 102 ms
107,776 KB
testcase_18 AC 111 ms
110,080 KB
testcase_19 AC 104 ms
105,344 KB
testcase_20 AC 127 ms
108,160 KB
testcase_21 AC 119 ms
107,136 KB
testcase_22 AC 129 ms
108,800 KB
testcase_23 AC 157 ms
105,672 KB
testcase_24 AC 157 ms
105,820 KB
testcase_25 AC 156 ms
104,516 KB
testcase_26 AC 157 ms
106,752 KB
testcase_27 AC 83 ms
97,280 KB
testcase_28 AC 82 ms
97,536 KB
testcase_29 AC 82 ms
97,408 KB
testcase_30 AC 82 ms
97,408 KB
testcase_31 AC 129 ms
102,912 KB
testcase_32 AC 163 ms
105,376 KB
testcase_33 AC 117 ms
103,952 KB
testcase_34 AC 117 ms
104,716 KB
testcase_35 AC 92 ms
100,992 KB
testcase_36 AC 121 ms
101,888 KB
testcase_37 AC 116 ms
104,336 KB
testcase_38 AC 119 ms
104,112 KB
testcase_39 AC 100 ms
103,552 KB
testcase_40 AC 105 ms
104,832 KB
testcase_41 AC 153 ms
101,360 KB
testcase_42 AC 151 ms
101,480 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 d==0:
	print('Yes')
elif flg:
	print('No')
else:
	print(['Yes','No'][(A[-1]-A[ind])//d+1-N>0])
0