結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 40 ms
53,888 KB
testcase_02 AC 44 ms
54,144 KB
testcase_03 RE -
testcase_04 AC 41 ms
54,016 KB
testcase_05 AC 41 ms
53,760 KB
testcase_06 AC 42 ms
53,760 KB
testcase_07 AC 42 ms
54,016 KB
testcase_08 AC 42 ms
53,504 KB
testcase_09 AC 41 ms
53,760 KB
testcase_10 AC 210 ms
131,368 KB
testcase_11 AC 210 ms
131,444 KB
testcase_12 AC 76 ms
92,160 KB
testcase_13 AC 74 ms
95,616 KB
testcase_14 AC 78 ms
94,208 KB
testcase_15 AC 134 ms
106,308 KB
testcase_16 AC 154 ms
119,108 KB
testcase_17 AC 94 ms
107,264 KB
testcase_18 AC 111 ms
106,700 KB
testcase_19 AC 95 ms
105,344 KB
testcase_20 AC 118 ms
106,752 KB
testcase_21 AC 108 ms
107,008 KB
testcase_22 AC 130 ms
105,320 KB
testcase_23 AC 157 ms
119,084 KB
testcase_24 AC 155 ms
118,940 KB
testcase_25 AC 155 ms
118,164 KB
testcase_26 AC 157 ms
119,276 KB
testcase_27 RE -
testcase_28 AC 80 ms
100,352 KB
testcase_29 AC 79 ms
100,736 KB
testcase_30 AC 80 ms
100,224 KB
testcase_31 AC 114 ms
101,504 KB
testcase_32 AC 157 ms
118,632 KB
testcase_33 AC 121 ms
118,160 KB
testcase_34 AC 121 ms
118,364 KB
testcase_35 AC 91 ms
104,088 KB
testcase_36 AC 125 ms
107,516 KB
testcase_37 AC 120 ms
118,416 KB
testcase_38 AC 120 ms
116,064 KB
testcase_39 AC 102 ms
107,020 KB
testcase_40 AC 103 ms
107,264 KB
testcase_41 AC 150 ms
114,692 KB
testcase_42 AC 150 ms
114,060 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