結果

問題 No.1884 Sequence
ユーザー yvay5cqeyvay5cqe
提出日時 2022-03-28 00:50:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 677 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,132 KB
最終ジャッジ日時 2024-11-06 17:57:56
合計ジャッジ時間 11,713 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 329 ms
34,132 KB
testcase_11 AC 329 ms
34,128 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 75 ms
14,224 KB
testcase_15 AC 247 ms
23,092 KB
testcase_16 AC 503 ms
34,128 KB
testcase_17 AC 174 ms
20,412 KB
testcase_18 AC 208 ms
24,500 KB
testcase_19 AC 218 ms
21,464 KB
testcase_20 AC 209 ms
20,920 KB
testcase_21 AC 143 ms
19,260 KB
testcase_22 AC 204 ms
22,048 KB
testcase_23 AC 509 ms
32,440 KB
testcase_24 AC 500 ms
33,992 KB
testcase_25 AC 327 ms
32,696 KB
testcase_26 AC 328 ms
34,104 KB
testcase_27 AC 80 ms
14,520 KB
testcase_28 AC 81 ms
14,632 KB
testcase_29 AC 81 ms
14,760 KB
testcase_30 AC 82 ms
14,632 KB
testcase_31 AC 177 ms
20,964 KB
testcase_32 AC 327 ms
32,916 KB
testcase_33 AC 286 ms
32,564 KB
testcase_34 AC 287 ms
32,568 KB
testcase_35 AC 97 ms
15,748 KB
testcase_36 AC 216 ms
26,240 KB
testcase_37 AC 229 ms
32,572 KB
testcase_38 AC 277 ms
33,760 KB
testcase_39 AC 124 ms
18,328 KB
testcase_40 AC 122 ms
19,364 KB
testcase_41 AC 287 ms
28,684 KB
testcase_42 AC 395 ms
28,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
poss = 10**15
pre = -10**15
for x in AA:
    poss = min(poss, x - pre)
    pre = x

# 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