結果

問題 No.1884 Sequence
ユーザー rlangevinrlangevin
提出日時 2023-01-01 14:56:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 163,352 KB
最終ジャッジ日時 2024-05-05 05:49:53
合計ジャッジ時間 6,740 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 38 ms
52,608 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 229 ms
162,888 KB
testcase_11 AC 231 ms
163,156 KB
testcase_12 AC 70 ms
89,216 KB
testcase_13 AC 72 ms
93,056 KB
testcase_14 AC 77 ms
92,928 KB
testcase_15 AC 141 ms
107,520 KB
testcase_16 AC 190 ms
163,156 KB
testcase_17 AC 103 ms
110,064 KB
testcase_18 AC 123 ms
108,116 KB
testcase_19 AC 111 ms
108,888 KB
testcase_20 AC 127 ms
106,880 KB
testcase_21 AC 113 ms
115,200 KB
testcase_22 AC 140 ms
107,616 KB
testcase_23 AC 195 ms
162,908 KB
testcase_24 AC 187 ms
163,352 KB
testcase_25 AC 191 ms
162,528 KB
testcase_26 AC 194 ms
163,152 KB
testcase_27 AC 75 ms
96,512 KB
testcase_28 AC 77 ms
97,152 KB
testcase_29 AC 76 ms
96,896 KB
testcase_30 AC 77 ms
97,536 KB
testcase_31 AC 120 ms
106,240 KB
testcase_32 AC 193 ms
161,832 KB
testcase_33 AC 115 ms
116,388 KB
testcase_34 AC 116 ms
116,720 KB
testcase_35 AC 81 ms
99,584 KB
testcase_36 AC 113 ms
106,476 KB
testcase_37 AC 130 ms
130,160 KB
testcase_38 AC 130 ms
128,628 KB
testcase_39 AC 89 ms
107,520 KB
testcase_40 AC 95 ms
108,036 KB
testcase_41 AC 179 ms
143,788 KB
testcase_42 AC 182 ms
143,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

N = int(input())
A = list(map(int, input().split()))
L = []
zero = 0
for a in A:
    if a == 0:
        zero += 1
    else:
        L.append(a)
        
L.sort()
if len(set(L)) <= 1:
    print("Yes")
    exit()
D = []
for i in range(len(L) - 1):
    D.append(L[i + 1] - L[i])
minv = D[0]
for d in D:
    minv = gcd(minv, d)
    if d == 0:
        minv = 0
        break

if minv == 0:
    print("No")
    exit()
    
cnt = 0
for d in D:
    cnt += d - 1
if cnt <= zero:
    print("Yes")
    exit()


cnt = 0
for d in D:
    if d % minv != 0:
        print("No")
        exit()
    cnt += d // minv - 1
    
if cnt <= zero:
    print("Yes")
else:
    print("No")    
0