結果

問題 No.1884 Sequence
ユーザー horitaka1999horitaka1999
提出日時 2022-03-25 21:58:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,154 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 134,240 KB
最終ジャッジ日時 2024-10-14 05:54:07
合計ジャッジ時間 11,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,600 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 36 ms
52,736 KB
testcase_04 AC 38 ms
52,736 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 315 ms
79,360 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 WA -
testcase_10 AC 186 ms
133,680 KB
testcase_11 AC 186 ms
134,240 KB
testcase_12 AC 69 ms
89,984 KB
testcase_13 AC 72 ms
93,696 KB
testcase_14 AC 78 ms
94,848 KB
testcase_15 AC 150 ms
107,392 KB
testcase_16 AC 197 ms
133,432 KB
testcase_17 AC 141 ms
109,712 KB
testcase_18 AC 120 ms
107,648 KB
testcase_19 AC 114 ms
109,440 KB
testcase_20 AC 136 ms
106,580 KB
testcase_21 AC 115 ms
108,288 KB
testcase_22 AC 140 ms
106,904 KB
testcase_23 AC 197 ms
134,068 KB
testcase_24 AC 230 ms
133,692 KB
testcase_25 AC 234 ms
132,568 KB
testcase_26 AC 207 ms
133,520 KB
testcase_27 AC 75 ms
96,896 KB
testcase_28 AC 72 ms
97,408 KB
testcase_29 AC 246 ms
97,664 KB
testcase_30 AC 74 ms
97,536 KB
testcase_31 AC 139 ms
106,400 KB
testcase_32 WA -
testcase_33 AC 130 ms
129,916 KB
testcase_34 AC 126 ms
130,088 KB
testcase_35 AC 80 ms
101,656 KB
testcase_36 AC 119 ms
114,712 KB
testcase_37 AC 135 ms
129,836 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
newA.sort()
def is_ok(d):
    tmp = 0
    for di in dis:
        tmp += di // d - 1

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