結果

問題 No.1884 Sequence
ユーザー 👑 KazunKazun
提出日時 2022-03-25 21:41:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 149,404 KB
最終ジャッジ日時 2024-10-14 05:38:33
合計ジャッジ時間 6,395 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 222 ms
148,916 KB
testcase_11 AC 215 ms
149,368 KB
testcase_12 AC 69 ms
89,088 KB
testcase_13 AC 71 ms
92,800 KB
testcase_14 AC 76 ms
91,648 KB
testcase_15 AC 142 ms
107,404 KB
testcase_16 AC 188 ms
148,848 KB
testcase_17 AC 105 ms
109,084 KB
testcase_18 AC 122 ms
107,896 KB
testcase_19 AC 109 ms
108,544 KB
testcase_20 AC 126 ms
111,104 KB
testcase_21 AC 108 ms
108,160 KB
testcase_22 AC 131 ms
106,880 KB
testcase_23 AC 187 ms
149,124 KB
testcase_24 AC 194 ms
149,404 KB
testcase_25 AC 188 ms
148,092 KB
testcase_26 AC 186 ms
148,912 KB
testcase_27 AC 77 ms
96,512 KB
testcase_28 AC 73 ms
96,256 KB
testcase_29 AC 87 ms
103,808 KB
testcase_30 AC 76 ms
96,768 KB
testcase_31 AC 97 ms
105,120 KB
testcase_32 AC 152 ms
146,232 KB
testcase_33 AC 113 ms
116,128 KB
testcase_34 AC 113 ms
116,160 KB
testcase_35 AC 77 ms
99,072 KB
testcase_36 AC 108 ms
105,836 KB
testcase_37 AC 113 ms
115,856 KB
testcase_38 AC 112 ms
114,352 KB
testcase_39 AC 87 ms
104,320 KB
testcase_40 AC 86 ms
105,728 KB
testcase_41 AC 176 ms
133,240 KB
testcase_42 AC 184 ms
132,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(A):
    from math import gcd

    E=[a for a in A if a!=0]; E_set=set(E)
    M=A.count(0)

    if M==N or M==N-1:
        return 1

    if len(E)!=len(E_set):
        return len(E_set)==1

    E.sort()
    g=0
    for i in range(len(E)-1):
        g=gcd(g,E[i+1]-E[i])

    E_min=E[0]; E_max=E[-1]
    X=E_min

    for _ in range(M+1):
        while X in E_set:
            X+=g
        X+=g

    return X>E_max

N=int(input())
A=list(map(int,input().split()))
print("Yes" if solve(A) else "No")
0