結果

問題 No.1884 Sequence
ユーザー yvay5cqeyvay5cqe
提出日時 2022-03-28 00:55:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 779 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,428 KB
最終ジャッジ日時 2024-11-06 18:01:49
合計ジャッジ時間 10,255 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 WA -
testcase_10 AC 326 ms
34,264 KB
testcase_11 AC 317 ms
34,308 KB
testcase_12 AC 71 ms
13,452 KB
testcase_13 AC 77 ms
13,840 KB
testcase_14 AC 76 ms
14,404 KB
testcase_15 AC 249 ms
23,272 KB
testcase_16 AC 519 ms
34,300 KB
testcase_17 AC 171 ms
20,576 KB
testcase_18 AC 202 ms
24,552 KB
testcase_19 AC 213 ms
21,512 KB
testcase_20 AC 185 ms
21,100 KB
testcase_21 AC 143 ms
19,308 KB
testcase_22 AC 196 ms
21,964 KB
testcase_23 AC 537 ms
32,616 KB
testcase_24 AC 536 ms
34,428 KB
testcase_25 AC 352 ms
32,740 KB
testcase_26 AC 339 ms
34,284 KB
testcase_27 AC 83 ms
14,808 KB
testcase_28 AC 82 ms
14,852 KB
testcase_29 AC 83 ms
14,940 KB
testcase_30 AC 82 ms
14,808 KB
testcase_31 AC 261 ms
21,136 KB
testcase_32 AC 334 ms
33,092 KB
testcase_33 AC 257 ms
34,204 KB
testcase_34 AC 264 ms
34,292 KB
testcase_35 AC 96 ms
15,580 KB
testcase_36 AC 209 ms
26,424 KB
testcase_37 AC 208 ms
34,328 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 292 ms
28,868 KB
testcase_42 AC 412 ms
28,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N = int(input())
A = list(map(int, input().split()))
zero_count = A.count(0)
AA = []
for x in A:
    if x != 0:
        AA.append(x)

AA.sort()
# print(zero_count, AA)
if len(AA) <= 2:
    print("Yes")
    exit()

poss = AA[1] - AA[0]
pre = -10**15
for i in range(len(AA) - 1):
    dif = AA[i + 1] - AA[i]
    poss = gcd(poss, dif)

# print(poss)
ans = True
for i in range(len(AA) - 1):
    dif = AA[i + 1] - AA[i]
    if poss == 0:
        if dif != 0:
            ans = 0
            break
        else:
            continue

    if dif % poss != 0:
        # print(dif, poss)
        ans = 0
        break
    zero_count -= dif // poss - 1
    if zero_count < 0:
        # print(-1, dif, poss)
        ans = 0
        break

print("Yes" if ans else "No")
0