結果

問題 No.1884 Sequence
ユーザー rlangevinrlangevin
提出日時 2023-01-01 14:42:10
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 538 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 163,172 KB
最終ジャッジ日時 2024-05-05 05:49:24
合計ジャッジ時間 8,605 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 RE -
testcase_10 AC 200 ms
162,808 KB
testcase_11 AC 194 ms
162,628 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 80 ms
92,288 KB
testcase_15 AC 136 ms
107,520 KB
testcase_16 AC 200 ms
162,948 KB
testcase_17 AC 109 ms
109,608 KB
testcase_18 AC 127 ms
107,940 KB
testcase_19 AC 108 ms
108,672 KB
testcase_20 AC 130 ms
106,368 KB
testcase_21 AC 106 ms
114,944 KB
testcase_22 AC 130 ms
106,880 KB
testcase_23 AC 188 ms
162,936 KB
testcase_24 AC 189 ms
163,020 KB
testcase_25 AC 188 ms
162,284 KB
testcase_26 AC 192 ms
163,172 KB
testcase_27 AC 73 ms
96,384 KB
testcase_28 AC 81 ms
96,384 KB
testcase_29 AC 80 ms
96,384 KB
testcase_30 AC 80 ms
97,280 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 114 ms
116,024 KB
testcase_34 AC 112 ms
116,164 KB
testcase_35 AC 88 ms
99,200 KB
testcase_36 AC 110 ms
106,260 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 174 ms
143,816 KB
testcase_42 AC 170 ms
143,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
L = []
zero = 0
for a in A:
    if a == 0:
        zero += 1
    else:
        L.append(a)
        
L.sort()
if len(set(L)) == 1:
    print("Yes")
    exit()
D = []
for i in range(len(L) - 1):
    D.append(L[i + 1] - L[i])

cnt = 0
for d in D:
    cnt += d - 1
if cnt <= zero:
    print("Yes")
    exit()

minv = min(D)
cnt = 0
for d in D:
    if d % minv != 0:
        print("No")
        exit()
    cnt += d // minv - 1
    
if cnt <= zero:
    print("Yes")
else:
    print("No")    
0