結果

問題 No.1884 Sequence
ユーザー titiatitia
提出日時 2022-03-25 21:31:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 37,444 KB
最終ジャッジ日時 2024-10-14 05:23:16
合計ジャッジ時間 8,679 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 351 ms
37,444 KB
testcase_11 AC 350 ms
36,548 KB
testcase_12 AC 82 ms
13,428 KB
testcase_13 AC 87 ms
13,680 KB
testcase_14 AC 84 ms
14,136 KB
testcase_15 AC 221 ms
25,332 KB
testcase_16 AC 352 ms
37,440 KB
testcase_17 AC 140 ms
20,288 KB
testcase_18 AC 178 ms
26,116 KB
testcase_19 AC 149 ms
23,404 KB
testcase_20 AC 184 ms
20,952 KB
testcase_21 AC 152 ms
19,292 KB
testcase_22 AC 207 ms
24,224 KB
testcase_23 AC 355 ms
36,636 KB
testcase_24 AC 349 ms
37,432 KB
testcase_25 AC 343 ms
36,552 KB
testcase_26 AC 347 ms
36,424 KB
testcase_27 AC 96 ms
13,924 KB
testcase_28 AC 94 ms
13,924 KB
testcase_29 AC 97 ms
13,924 KB
testcase_30 AC 97 ms
14,052 KB
testcase_31 AC 152 ms
24,160 KB
testcase_32 AC 251 ms
37,356 KB
testcase_33 AC 147 ms
32,724 KB
testcase_34 AC 141 ms
32,728 KB
testcase_35 AC 101 ms
15,776 KB
testcase_36 AC 130 ms
26,400 KB
testcase_37 AC 147 ms
32,516 KB
testcase_38 AC 147 ms
32,596 KB
testcase_39 AC 107 ms
18,496 KB
testcase_40 AC 111 ms
19,524 KB
testcase_41 AC 282 ms
28,840 KB
testcase_42 AC 289 ms
28,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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