結果

問題 No.1884 Sequence
ユーザー rlangevinrlangevin
提出日時 2023-01-01 14:54:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 641 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 163,428 KB
最終ジャッジ日時 2024-05-05 05:49:46
合計ジャッジ時間 6,349 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,940 KB
testcase_01 AC 39 ms
53,056 KB
testcase_02 AC 39 ms
52,804 KB
testcase_03 AC 36 ms
52,524 KB
testcase_04 AC 33 ms
53,452 KB
testcase_05 AC 34 ms
53,416 KB
testcase_06 AC 33 ms
53,084 KB
testcase_07 AC 33 ms
52,412 KB
testcase_08 AC 33 ms
52,320 KB
testcase_09 WA -
testcase_10 AC 214 ms
163,428 KB
testcase_11 AC 208 ms
163,316 KB
testcase_12 AC 62 ms
91,456 KB
testcase_13 AC 63 ms
93,776 KB
testcase_14 AC 66 ms
93,160 KB
testcase_15 AC 142 ms
108,024 KB
testcase_16 AC 186 ms
162,856 KB
testcase_17 AC 99 ms
109,948 KB
testcase_18 AC 122 ms
108,300 KB
testcase_19 AC 107 ms
109,420 KB
testcase_20 AC 126 ms
106,980 KB
testcase_21 AC 102 ms
115,192 KB
testcase_22 AC 121 ms
107,128 KB
testcase_23 AC 195 ms
163,192 KB
testcase_24 AC 176 ms
163,252 KB
testcase_25 AC 181 ms
162,180 KB
testcase_26 AC 187 ms
163,032 KB
testcase_27 AC 67 ms
96,988 KB
testcase_28 AC 70 ms
97,844 KB
testcase_29 AC 70 ms
97,908 KB
testcase_30 AC 69 ms
97,472 KB
testcase_31 AC 113 ms
106,664 KB
testcase_32 WA -
testcase_33 AC 103 ms
116,100 KB
testcase_34 AC 106 ms
116,200 KB
testcase_35 AC 73 ms
100,040 KB
testcase_36 AC 103 ms
106,544 KB
testcase_37 AC 127 ms
130,424 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 171 ms
143,608 KB
testcase_42 AC 170 ms
143,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

N = int(input())
A = list(map(int, input().split()))
L = []
zero = 0
for a in A:
    if a == 0:
        zero += 1
    else:
        L.append(a)
        
L.sort()
if len(set(L)) <= 1:
    print("Yes")
    exit()
D = []
for i in range(len(L) - 1):
    D.append(L[i + 1] - L[i])
minv = D[0]
for d in D:
    minv = gcd(minv, d)

if minv == 0:
    print("No")
    exit()
    
cnt = 0
for d in D:
    cnt += d - 1
if cnt <= zero:
    print("Yes")
    exit()


cnt = 0
for d in D:
    if d % minv != 0:
        print("No")
        exit()
    cnt += d // minv - 1
    
if cnt <= zero:
    print("Yes")
else:
    print("No")    
0