結果

問題 No.1884 Sequence
ユーザー ShirotsumeShirotsume
提出日時 2022-03-07 16:35:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 990 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 136,244 KB
最終ジャッジ日時 2024-07-22 11:33:19
合計ジャッジ時間 6,023 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
INF = 10 ** 18
def solve():
    n = int(input())
    a = list(map(int,input().split()))
    #書ける数に上限はないので、min(a)より前になるような数を書く必要はない
    #0を抜いてソート
    a.sort()
    zeros = 0
    for i in range(n):
        if a[i] == 0:
            zeros += 1
        else:
            a = a[i:]
            break
    #公差は隣り合う要素の差のgcd
    #コーナーケース:a[i] = a[i + 1]
    #コーナーケース:len(a) == 1
    if len(a) == 1:
        print('Yes')
        return
    n = len(a)
    mind = a[1] - a[0]
    for i in range(n - 1):
        mind = gcd(mind, a[i + 1] - a[i])
        if a[i] == a[i + 1]:
            if len(set(a)) == 1:
                print('Yes')
            else:
                print('No')
            return
    needs = 0
    for i in range(n - 1):
        needs += (a[i + 1] - a[i]) // mind - 1
    
    print('Yes' if needs <= zeros else 'No')

solve()
    

0