結果

問題 No.1884 Sequence
ユーザー kohei2019kohei2019
提出日時 2023-07-08 15:49:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 154,904 KB
最終ジャッジ日時 2024-07-22 11:13:04
合計ジャッジ時間 8,856 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,888 KB
testcase_01 AC 48 ms
53,632 KB
testcase_02 AC 46 ms
53,888 KB
testcase_03 AC 45 ms
54,016 KB
testcase_04 AC 46 ms
54,016 KB
testcase_05 AC 46 ms
53,888 KB
testcase_06 AC 46 ms
53,632 KB
testcase_07 AC 46 ms
53,760 KB
testcase_08 AC 45 ms
53,504 KB
testcase_09 AC 46 ms
53,760 KB
testcase_10 AC 250 ms
153,352 KB
testcase_11 AC 252 ms
153,488 KB
testcase_12 AC 84 ms
91,264 KB
testcase_13 AC 87 ms
95,232 KB
testcase_14 AC 98 ms
95,232 KB
testcase_15 AC 172 ms
120,764 KB
testcase_16 AC 237 ms
153,616 KB
testcase_17 AC 124 ms
106,496 KB
testcase_18 AC 155 ms
123,240 KB
testcase_19 AC 132 ms
103,808 KB
testcase_20 AC 148 ms
106,880 KB
testcase_21 AC 127 ms
108,160 KB
testcase_22 AC 164 ms
118,556 KB
testcase_23 AC 223 ms
154,904 KB
testcase_24 AC 219 ms
153,872 KB
testcase_25 AC 217 ms
151,528 KB
testcase_26 AC 219 ms
152,248 KB
testcase_27 AC 89 ms
98,304 KB
testcase_28 AC 90 ms
98,560 KB
testcase_29 AC 90 ms
98,560 KB
testcase_30 AC 93 ms
99,328 KB
testcase_31 AC 136 ms
101,120 KB
testcase_32 AC 215 ms
151,096 KB
testcase_33 AC 134 ms
118,236 KB
testcase_34 AC 136 ms
118,240 KB
testcase_35 AC 105 ms
101,760 KB
testcase_36 AC 131 ms
106,744 KB
testcase_37 AC 134 ms
118,368 KB
testcase_38 AC 133 ms
117,464 KB
testcase_39 AC 106 ms
107,520 KB
testcase_40 AC 107 ms
105,728 KB
testcase_41 AC 197 ms
138,404 KB
testcase_42 AC 203 ms
139,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import collections
N=int(input())
lsA = list(map(int,input().split()))
cnt0 = 0
lsA1 = []
for i in range(N):
    if lsA[i] == 0:
        cnt0 += 1
    else:
        lsA1.append(lsA[i])
lsA1.sort()
if len(lsA1) == 0:
    print('Yes')
    exit()

cnt = collections.Counter(lsA1)
if len(cnt)==1:
    print('Yes')
    exit()

vals = max(list(cnt.values()))
if vals > 1:
    print('No')
    exit()

gcd = lsA1[1]-lsA1[0]
for i in range(1,len(lsA1)-1):
    gcd = math.gcd(lsA1[i+1]-lsA1[i],gcd)

lsA1.reverse()
st = lsA1.pop()
for i in range(N-1):
    if not lsA1:
        print('Yes')
        exit()
    if lsA1[-1] == st+gcd:
        st = lsA1.pop()
    else:
        if cnt0 == 0:
            print('No')
            exit()
        else:
            cnt0 -= 1
            st = st+gcd
print('Yes')
0