結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 39 ms
52,480 KB
testcase_10 AC 235 ms
163,368 KB
testcase_11 AC 230 ms
163,216 KB
testcase_12 AC 69 ms
89,600 KB
testcase_13 AC 72 ms
92,928 KB
testcase_14 AC 75 ms
92,672 KB
testcase_15 AC 142 ms
107,756 KB
testcase_16 AC 189 ms
162,800 KB
testcase_17 AC 102 ms
109,952 KB
testcase_18 AC 122 ms
107,972 KB
testcase_19 AC 108 ms
108,672 KB
testcase_20 AC 127 ms
106,496 KB
testcase_21 AC 110 ms
114,868 KB
testcase_22 AC 133 ms
107,520 KB
testcase_23 AC 191 ms
163,044 KB
testcase_24 AC 191 ms
163,304 KB
testcase_25 AC 200 ms
162,476 KB
testcase_26 AC 197 ms
163,080 KB
testcase_27 AC 73 ms
96,896 KB
testcase_28 AC 74 ms
97,536 KB
testcase_29 AC 75 ms
97,536 KB
testcase_30 AC 74 ms
96,896 KB
testcase_31 AC 116 ms
106,368 KB
testcase_32 AC 189 ms
161,452 KB
testcase_33 AC 113 ms
116,444 KB
testcase_34 AC 113 ms
116,004 KB
testcase_35 AC 79 ms
99,328 KB
testcase_36 AC 108 ms
106,292 KB
testcase_37 AC 127 ms
130,340 KB
testcase_38 AC 127 ms
128,188 KB
testcase_39 AC 86 ms
106,752 KB
testcase_40 AC 91 ms
108,044 KB
testcase_41 AC 184 ms
143,744 KB
testcase_42 AC 180 ms
143,276 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