結果

問題 No.1884 Sequence
ユーザー pluto77pluto77
提出日時 2022-05-29 16:29:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 37,424 KB
最終ジャッジ日時 2024-09-21 00:15:18
合計ジャッジ時間 9,878 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 317 ms
37,352 KB
testcase_11 AC 330 ms
36,372 KB
testcase_12 AC 83 ms
13,552 KB
testcase_13 AC 89 ms
13,804 KB
testcase_14 AC 81 ms
14,268 KB
testcase_15 AC 208 ms
25,440 KB
testcase_16 AC 320 ms
37,284 KB
testcase_17 AC 133 ms
20,408 KB
testcase_18 AC 176 ms
26,228 KB
testcase_19 AC 145 ms
23,468 KB
testcase_20 AC 177 ms
20,828 KB
testcase_21 AC 147 ms
19,416 KB
testcase_22 AC 196 ms
24,276 KB
testcase_23 AC 322 ms
36,648 KB
testcase_24 AC 314 ms
37,424 KB
testcase_25 AC 336 ms
36,440 KB
testcase_26 AC 328 ms
36,608 KB
testcase_27 AC 91 ms
14,048 KB
testcase_28 AC 91 ms
13,920 KB
testcase_29 AC 92 ms
13,924 KB
testcase_30 AC 93 ms
14,052 KB
testcase_31 AC 146 ms
24,156 KB
testcase_32 AC 242 ms
37,252 KB
testcase_33 AC 138 ms
32,724 KB
testcase_34 AC 138 ms
32,600 KB
testcase_35 AC 96 ms
15,904 KB
testcase_36 AC 122 ms
26,400 KB
testcase_37 AC 148 ms
32,728 KB
testcase_38 AC 140 ms
32,728 KB
testcase_39 AC 103 ms
18,624 KB
testcase_40 AC 110 ms
19,396 KB
testcase_41 AC 272 ms
28,836 KB
testcase_42 AC 266 ms
28,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1884
from math import gcd
N=int(input())
A=list(map(int,input().split()))
ZERO=0
B=[]
for a in A:
 if a==0:
  ZERO+=1
 else:
  B.append(a)
B.sort()
if len(set(B))<=1:
 print('Yes')
 exit()
if len(set(B))!=len(B):
 print('No')
 exit()
GCD=0
for i in range(1,len(B)):
 GCD=gcd(GCD,B[i]-B[i-1])
MIN=B[0]
MAX=B[-1]
k=(MAX-MIN)//GCD+1
if k-len(B)<=ZERO:
 print('Yes')
else:
 print('No')
0