結果

問題 No.1884 Sequence
ユーザー KudeKude
提出日時 2022-03-25 21:28:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 140,964 KB
最終ジャッジ日時 2024-10-14 05:18:13
合計ジャッジ時間 6,408 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 40 ms
51,712 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 218 ms
140,316 KB
testcase_11 AC 220 ms
140,436 KB
testcase_12 AC 65 ms
77,056 KB
testcase_13 AC 65 ms
79,488 KB
testcase_14 AC 72 ms
80,384 KB
testcase_15 AC 140 ms
108,160 KB
testcase_16 AC 189 ms
140,964 KB
testcase_17 AC 102 ms
105,984 KB
testcase_18 AC 123 ms
110,956 KB
testcase_19 AC 108 ms
110,976 KB
testcase_20 AC 122 ms
98,304 KB
testcase_21 AC 107 ms
102,272 KB
testcase_22 AC 127 ms
100,096 KB
testcase_23 AC 191 ms
140,572 KB
testcase_24 AC 189 ms
140,580 KB
testcase_25 AC 187 ms
139,792 KB
testcase_26 AC 191 ms
140,104 KB
testcase_27 AC 68 ms
81,152 KB
testcase_28 AC 70 ms
81,920 KB
testcase_29 AC 71 ms
82,432 KB
testcase_30 AC 70 ms
82,048 KB
testcase_31 AC 110 ms
106,752 KB
testcase_32 AC 181 ms
135,264 KB
testcase_33 AC 113 ms
104,392 KB
testcase_34 AC 112 ms
104,672 KB
testcase_35 AC 72 ms
84,608 KB
testcase_36 AC 108 ms
102,400 KB
testcase_37 AC 115 ms
104,284 KB
testcase_38 AC 114 ms
102,708 KB
testcase_39 AC 79 ms
89,216 KB
testcase_40 AC 80 ms
90,240 KB
testcase_41 AC 169 ms
123,396 KB
testcase_42 AC 174 ms
123,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
n = int(input())
a = []
k = 0
for x in map(int, input().split()):
    if x == 0:
        k += 1
    else:
        a.append(x)
a = sorted(a)
ls = len(set(a))
n = len(a)
if ls == 1:
    print('Yes')
    exit()
elif ls != n:
    print('No')
    exit()
g = 0
for x, y in zip(a, a[1:]):
    g = gcd(g, y - x)
r = sum((y - x) // g - 1 for x, y in zip(a, a[1:]))
print('Yes' if r <= k else 'No')
0