結果

問題 No.1884 Sequence
ユーザー lloyzlloyz
提出日時 2022-03-25 21:35:02
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 647 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 131,744 KB
最終ジャッジ日時 2024-10-14 05:29:40
合計ジャッジ時間 6,290 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,236 KB
testcase_01 AC 41 ms
54,272 KB
testcase_02 AC 42 ms
54,372 KB
testcase_03 RE -
testcase_04 AC 41 ms
54,900 KB
testcase_05 AC 41 ms
53,704 KB
testcase_06 AC 41 ms
55,708 KB
testcase_07 AC 41 ms
54,056 KB
testcase_08 AC 42 ms
54,860 KB
testcase_09 AC 42 ms
54,700 KB
testcase_10 AC 213 ms
131,744 KB
testcase_11 AC 208 ms
131,448 KB
testcase_12 AC 71 ms
92,740 KB
testcase_13 AC 73 ms
96,132 KB
testcase_14 AC 77 ms
94,332 KB
testcase_15 AC 134 ms
106,492 KB
testcase_16 AC 156 ms
119,176 KB
testcase_17 AC 92 ms
107,184 KB
testcase_18 AC 110 ms
106,908 KB
testcase_19 AC 95 ms
105,316 KB
testcase_20 AC 118 ms
106,652 KB
testcase_21 AC 108 ms
107,024 KB
testcase_22 AC 132 ms
105,264 KB
testcase_23 AC 154 ms
119,064 KB
testcase_24 AC 156 ms
119,052 KB
testcase_25 AC 156 ms
118,620 KB
testcase_26 AC 155 ms
119,480 KB
testcase_27 RE -
testcase_28 AC 79 ms
100,384 KB
testcase_29 AC 79 ms
101,104 KB
testcase_30 AC 79 ms
100,840 KB
testcase_31 AC 111 ms
101,680 KB
testcase_32 AC 157 ms
118,824 KB
testcase_33 AC 121 ms
118,120 KB
testcase_34 AC 120 ms
118,632 KB
testcase_35 AC 91 ms
104,268 KB
testcase_36 AC 123 ms
107,620 KB
testcase_37 AC 122 ms
118,476 KB
testcase_38 AC 120 ms
115,936 KB
testcase_39 AC 101 ms
106,908 KB
testcase_40 AC 104 ms
107,584 KB
testcase_41 AC 147 ms
114,492 KB
testcase_42 AC 152 ms
113,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from math import gcd

n = int(input())
A = list(map(int, input().split()))

A.sort(reverse=True)
num = 0
while A[-1] == 0:
    num += 1
    A.pop()
if len(A) <= 1:
    print("Yes")
    exit()

A.reverse()
D = []
for i in range(1, len(A)):
    D.append(A[i] - A[i - 1])
counter = Counter(D)
D = list(counter.keys())

if min(D) == 0:
    for dif in D:
        num -= dif * counter[dif]
else:
    dif_gcd = D[0]
    for i in range(1, len(D)):
        dif_gcd = gcd(dif_gcd, D[i])

    for dif in D:
        cnt = dif // dif_gcd - 1
        num -= cnt * counter[dif]
if num >= 0:
    print("Yes")
else:
    print("No")
0