結果

問題 No.1884 Sequence
ユーザー rlangevinrlangevin
提出日時 2023-01-01 14:43:17
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 584 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 163,116 KB
最終ジャッジ日時 2024-11-27 00:04:45
合計ジャッジ時間 6,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,136 KB
testcase_01 AC 36 ms
53,536 KB
testcase_02 AC 38 ms
53,304 KB
testcase_03 RE -
testcase_04 AC 37 ms
52,140 KB
testcase_05 AC 37 ms
52,364 KB
testcase_06 AC 40 ms
53,100 KB
testcase_07 AC 37 ms
52,336 KB
testcase_08 AC 41 ms
52,824 KB
testcase_09 AC 38 ms
52,972 KB
testcase_10 AC 195 ms
162,560 KB
testcase_11 AC 189 ms
162,828 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 71 ms
93,464 KB
testcase_15 AC 137 ms
107,648 KB
testcase_16 AC 183 ms
162,672 KB
testcase_17 AC 96 ms
109,972 KB
testcase_18 AC 112 ms
107,884 KB
testcase_19 AC 103 ms
108,836 KB
testcase_20 AC 118 ms
106,876 KB
testcase_21 AC 104 ms
114,824 KB
testcase_22 AC 125 ms
106,856 KB
testcase_23 AC 185 ms
163,116 KB
testcase_24 AC 190 ms
162,960 KB
testcase_25 AC 190 ms
162,476 KB
testcase_26 AC 191 ms
162,912 KB
testcase_27 RE -
testcase_28 AC 73 ms
97,696 KB
testcase_29 AC 73 ms
97,468 KB
testcase_30 AC 73 ms
96,988 KB
testcase_31 AC 111 ms
106,568 KB
testcase_32 AC 183 ms
161,540 KB
testcase_33 AC 109 ms
115,940 KB
testcase_34 AC 115 ms
116,224 KB
testcase_35 AC 77 ms
100,020 KB
testcase_36 AC 108 ms
106,048 KB
testcase_37 AC 124 ms
129,856 KB
testcase_38 AC 127 ms
128,576 KB
testcase_39 AC 87 ms
107,188 KB
testcase_40 AC 93 ms
107,964 KB
testcase_41 AC 171 ms
143,808 KB
testcase_42 AC 170 ms
143,680 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