結果

問題 No.1884 Sequence
ユーザー horitaka1999horitaka1999
提出日時 2022-03-25 22:11:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,278 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 134,168 KB
最終ジャッジ日時 2024-10-14 06:05:09
合計ジャッジ時間 11,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,688 KB
testcase_01 AC 38 ms
53,268 KB
testcase_02 AC 38 ms
52,712 KB
testcase_03 AC 37 ms
52,668 KB
testcase_04 AC 37 ms
52,512 KB
testcase_05 AC 37 ms
52,880 KB
testcase_06 AC 38 ms
52,828 KB
testcase_07 AC 318 ms
79,692 KB
testcase_08 AC 37 ms
53,052 KB
testcase_09 WA -
testcase_10 AC 190 ms
133,908 KB
testcase_11 AC 190 ms
133,916 KB
testcase_12 AC 69 ms
91,364 KB
testcase_13 AC 73 ms
93,868 KB
testcase_14 AC 78 ms
95,172 KB
testcase_15 AC 146 ms
107,436 KB
testcase_16 AC 195 ms
133,652 KB
testcase_17 AC 143 ms
109,704 KB
testcase_18 AC 123 ms
107,844 KB
testcase_19 AC 116 ms
109,096 KB
testcase_20 AC 137 ms
106,828 KB
testcase_21 AC 112 ms
108,116 KB
testcase_22 AC 143 ms
107,740 KB
testcase_23 AC 199 ms
134,168 KB
testcase_24 AC 233 ms
133,796 KB
testcase_25 AC 233 ms
132,384 KB
testcase_26 AC 208 ms
133,836 KB
testcase_27 AC 72 ms
98,664 KB
testcase_28 AC 74 ms
98,052 KB
testcase_29 AC 248 ms
98,460 KB
testcase_30 AC 74 ms
97,564 KB
testcase_31 AC 140 ms
106,540 KB
testcase_32 WA -
testcase_33 AC 129 ms
129,896 KB
testcase_34 AC 129 ms
130,016 KB
testcase_35 AC 80 ms
102,372 KB
testcase_36 AC 120 ms
114,468 KB
testcase_37 AC 138 ms
130,000 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 TLE -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
    while b:
        a, b = b, a % b
    return a
from math import sqrt,ceil,floor
def yaku(n):#nの約数を列挙するO(sqrt(n))
    rev = []
    for i in range(1,ceil(sqrt(n))+1):
        if n % i == 0:
            rev.append(i)
            if n //i == i:
                continue
            rev.append(n//i)
    rev = list(set(rev))
    return sorted(rev)
N = int(input())
A = list(map(int,input().split()))
cnt = 0
def diff_list(List):
    rev = []
    for i in range(len(List)):
        if i + 1 < (len(List)):
            tmp = List[i+1] - List[i]
            rev.append(tmp)
    return rev
    
newA = []
for a in A:
    if a != 0:
        newA.append(a)
    else:
        cnt += 1
def is_ok(d):
    tmp = 0
    if d == 0:
        if max(newA) - min(newA) == 0:
            return True
        else:
            return False
    for di in dis:
        tmp += di // d - 1

    if tmp <= cnt:
        return True
    else:
        return False
if len(newA) <= 1:
    print('Yes')
else:
    newA.sort()
    dis = diff_list(newA)
    g = dis[0]
    for a in dis:
        g = gcd(g,a)
    if is_ok(0):
        print('Yes')
        exit()

    ds = yaku(g)
    for d in ds:
        if is_ok(d):
            print('Yes')
            exit()
    print('No')
    
0