結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 RE -
testcase_10 AC 189 ms
162,476 KB
testcase_11 AC 187 ms
162,916 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 74 ms
92,032 KB
testcase_15 AC 131 ms
107,776 KB
testcase_16 AC 187 ms
162,768 KB
testcase_17 AC 97 ms
109,876 KB
testcase_18 AC 115 ms
108,032 KB
testcase_19 AC 103 ms
108,836 KB
testcase_20 AC 121 ms
106,736 KB
testcase_21 AC 104 ms
114,816 KB
testcase_22 AC 128 ms
106,800 KB
testcase_23 AC 186 ms
163,064 KB
testcase_24 AC 187 ms
163,588 KB
testcase_25 AC 186 ms
162,168 KB
testcase_26 AC 191 ms
162,820 KB
testcase_27 AC 72 ms
96,512 KB
testcase_28 AC 75 ms
97,280 KB
testcase_29 AC 74 ms
96,768 KB
testcase_30 AC 74 ms
96,768 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 111 ms
116,348 KB
testcase_34 AC 112 ms
116,108 KB
testcase_35 AC 76 ms
99,372 KB
testcase_36 AC 108 ms
105,996 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 173 ms
143,428 KB
testcase_42 AC 171 ms
143,188 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