結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,012 KB
testcase_01 AC 38 ms
52,744 KB
testcase_02 AC 39 ms
52,832 KB
testcase_03 AC 36 ms
52,472 KB
testcase_04 AC 36 ms
53,344 KB
testcase_05 AC 37 ms
53,548 KB
testcase_06 AC 36 ms
53,284 KB
testcase_07 AC 37 ms
52,896 KB
testcase_08 AC 38 ms
52,684 KB
testcase_09 AC 37 ms
52,660 KB
testcase_10 AC 172 ms
106,016 KB
testcase_11 AC 164 ms
106,296 KB
testcase_12 AC 64 ms
88,732 KB
testcase_13 AC 66 ms
93,192 KB
testcase_14 AC 71 ms
92,196 KB
testcase_15 AC 114 ms
108,008 KB
testcase_16 AC 139 ms
105,916 KB
testcase_17 AC 81 ms
104,468 KB
testcase_18 AC 93 ms
108,900 KB
testcase_19 AC 82 ms
102,852 KB
testcase_20 AC 109 ms
107,764 KB
testcase_21 AC 98 ms
103,424 KB
testcase_22 AC 114 ms
108,592 KB
testcase_23 AC 137 ms
106,068 KB
testcase_24 AC 141 ms
105,532 KB
testcase_25 AC 136 ms
105,008 KB
testcase_26 AC 139 ms
106,448 KB
testcase_27 AC 71 ms
96,728 KB
testcase_28 AC 72 ms
96,292 KB
testcase_29 AC 71 ms
97,272 KB
testcase_30 AC 73 ms
96,924 KB
testcase_31 AC 108 ms
113,372 KB
testcase_32 AC 162 ms
136,244 KB
testcase_33 AC 97 ms
104,408 KB
testcase_34 AC 99 ms
104,316 KB
testcase_35 AC 77 ms
100,296 KB
testcase_36 AC 102 ms
102,092 KB
testcase_37 AC 100 ms
104,256 KB
testcase_38 AC 98 ms
102,476 KB
testcase_39 AC 85 ms
102,668 KB
testcase_40 AC 87 ms
103,640 KB
testcase_41 AC 132 ms
101,232 KB
testcase_42 AC 134 ms
100,868 KB
権限があれば一括ダウンロードができます

ソースコード

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