結果

問題 No.1884 Sequence
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-27 09:42:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 150,040 KB
最終ジャッジ日時 2024-11-06 04:49:09
合計ジャッジ時間 6,768 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,576 KB
testcase_01 AC 38 ms
53,712 KB
testcase_02 AC 39 ms
53,572 KB
testcase_03 AC 38 ms
52,284 KB
testcase_04 AC 38 ms
53,404 KB
testcase_05 AC 40 ms
52,344 KB
testcase_06 AC 39 ms
52,876 KB
testcase_07 AC 39 ms
53,268 KB
testcase_08 AC 40 ms
52,392 KB
testcase_09 AC 39 ms
53,120 KB
testcase_10 AC 232 ms
149,600 KB
testcase_11 AC 227 ms
150,040 KB
testcase_12 AC 70 ms
89,624 KB
testcase_13 AC 71 ms
93,396 KB
testcase_14 AC 77 ms
92,692 KB
testcase_15 AC 139 ms
108,640 KB
testcase_16 AC 183 ms
149,376 KB
testcase_17 AC 100 ms
109,928 KB
testcase_18 AC 120 ms
108,944 KB
testcase_19 AC 107 ms
109,320 KB
testcase_20 AC 130 ms
107,216 KB
testcase_21 AC 116 ms
115,096 KB
testcase_22 AC 135 ms
107,624 KB
testcase_23 AC 188 ms
149,772 KB
testcase_24 AC 189 ms
149,648 KB
testcase_25 AC 185 ms
148,532 KB
testcase_26 AC 189 ms
149,856 KB
testcase_27 AC 75 ms
97,356 KB
testcase_28 AC 75 ms
96,720 KB
testcase_29 AC 75 ms
97,804 KB
testcase_30 AC 76 ms
97,776 KB
testcase_31 AC 121 ms
106,436 KB
testcase_32 AC 191 ms
148,812 KB
testcase_33 AC 115 ms
116,228 KB
testcase_34 AC 116 ms
116,228 KB
testcase_35 AC 84 ms
100,720 KB
testcase_36 AC 120 ms
106,460 KB
testcase_37 AC 119 ms
116,464 KB
testcase_38 AC 117 ms
115,024 KB
testcase_39 AC 95 ms
105,532 KB
testcase_40 AC 98 ms
107,536 KB
testcase_41 AC 173 ms
133,412 KB
testcase_42 AC 176 ms
133,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
A.sort()
z = 0
B = []
for a in A:
    if a == 0:
        z += 1
    else:
        B.append(a)

if len(set(B)) <= 1:
    print('Yes')
    exit()

import math
d = 0

B.sort()
for i in range(len(B)-1):
    d = math.gcd(d, B[i+1]-B[i])

if d == 0:
    print('Yes')
    exit()

cnt = 0
for i in range(len(B)-1):
    if B[i+1]-B[i] == 0:
        print('No')
        exit()
    cnt += (B[i+1]-B[i])//d-1

if cnt <= z:
    print('Yes')
else:
    print('No')
0