結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,604 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 39 ms
52,156 KB
testcase_03 AC 39 ms
52,000 KB
testcase_04 AC 39 ms
52,568 KB
testcase_05 AC 39 ms
52,396 KB
testcase_06 AC 39 ms
52,212 KB
testcase_07 AC 38 ms
53,336 KB
testcase_08 AC 38 ms
52,012 KB
testcase_09 WA -
testcase_10 AC 236 ms
162,848 KB
testcase_11 AC 234 ms
163,256 KB
testcase_12 AC 70 ms
89,996 KB
testcase_13 AC 74 ms
92,828 KB
testcase_14 AC 77 ms
93,128 KB
testcase_15 AC 144 ms
107,692 KB
testcase_16 AC 190 ms
162,872 KB
testcase_17 AC 102 ms
110,252 KB
testcase_18 AC 123 ms
108,184 KB
testcase_19 AC 111 ms
108,892 KB
testcase_20 AC 129 ms
106,468 KB
testcase_21 AC 109 ms
114,960 KB
testcase_22 AC 135 ms
107,304 KB
testcase_23 AC 193 ms
163,296 KB
testcase_24 AC 191 ms
163,228 KB
testcase_25 AC 200 ms
162,348 KB
testcase_26 AC 197 ms
163,112 KB
testcase_27 AC 75 ms
97,448 KB
testcase_28 AC 76 ms
98,260 KB
testcase_29 AC 75 ms
98,464 KB
testcase_30 AC 76 ms
97,452 KB
testcase_31 AC 123 ms
106,456 KB
testcase_32 WA -
testcase_33 AC 115 ms
116,212 KB
testcase_34 AC 115 ms
116,068 KB
testcase_35 AC 78 ms
99,288 KB
testcase_36 AC 110 ms
106,284 KB
testcase_37 AC 140 ms
130,240 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 188 ms
143,776 KB
testcase_42 AC 180 ms
143,468 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