結果

問題 No.1884 Sequence
ユーザー rlangevinrlangevin
提出日時 2023-01-01 14:43:17
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 584 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 163,256 KB
最終ジャッジ日時 2024-05-05 05:49:31
合計ジャッジ時間 7,247 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 33 ms
52,352 KB
testcase_03 RE -
testcase_04 AC 33 ms
51,840 KB
testcase_05 AC 31 ms
51,584 KB
testcase_06 AC 34 ms
52,096 KB
testcase_07 AC 32 ms
51,968 KB
testcase_08 AC 33 ms
51,840 KB
testcase_09 AC 34 ms
51,840 KB
testcase_10 AC 179 ms
162,768 KB
testcase_11 AC 177 ms
162,740 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 66 ms
92,160 KB
testcase_15 AC 122 ms
107,264 KB
testcase_16 AC 169 ms
162,420 KB
testcase_17 AC 92 ms
110,028 KB
testcase_18 AC 107 ms
107,676 KB
testcase_19 AC 95 ms
108,416 KB
testcase_20 AC 110 ms
106,684 KB
testcase_21 AC 99 ms
114,816 KB
testcase_22 AC 116 ms
106,880 KB
testcase_23 AC 176 ms
162,748 KB
testcase_24 AC 179 ms
163,256 KB
testcase_25 AC 172 ms
162,224 KB
testcase_26 AC 176 ms
162,792 KB
testcase_27 RE -
testcase_28 AC 67 ms
97,008 KB
testcase_29 AC 67 ms
96,980 KB
testcase_30 AC 68 ms
97,028 KB
testcase_31 AC 106 ms
106,320 KB
testcase_32 AC 172 ms
161,032 KB
testcase_33 AC 102 ms
116,460 KB
testcase_34 AC 102 ms
116,024 KB
testcase_35 AC 73 ms
99,328 KB
testcase_36 AC 107 ms
106,520 KB
testcase_37 AC 128 ms
130,364 KB
testcase_38 AC 125 ms
127,756 KB
testcase_39 AC 85 ms
107,648 KB
testcase_40 AC 90 ms
107,648 KB
testcase_41 AC 165 ms
144,144 KB
testcase_42 AC 158 ms
142,996 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])
minv = min(D)
if minv == 0:
    print("No")
    exit()
    
cnt = 0
for d in D:
    cnt += d - 1
if cnt <= zero:
    print("Yes")
    exit()


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