結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,000 KB
testcase_01 AC 39 ms
53,288 KB
testcase_02 AC 37 ms
52,956 KB
testcase_03 AC 37 ms
52,440 KB
testcase_04 AC 36 ms
52,072 KB
testcase_05 AC 36 ms
53,512 KB
testcase_06 AC 37 ms
52,828 KB
testcase_07 AC 38 ms
52,248 KB
testcase_08 AC 37 ms
52,788 KB
testcase_09 AC 37 ms
52,404 KB
testcase_10 AC 196 ms
162,608 KB
testcase_11 AC 187 ms
162,764 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 71 ms
92,636 KB
testcase_15 AC 131 ms
107,772 KB
testcase_16 AC 186 ms
162,804 KB
testcase_17 AC 96 ms
109,672 KB
testcase_18 AC 118 ms
108,152 KB
testcase_19 AC 102 ms
108,696 KB
testcase_20 AC 119 ms
106,616 KB
testcase_21 AC 110 ms
114,932 KB
testcase_22 AC 129 ms
106,868 KB
testcase_23 AC 187 ms
162,828 KB
testcase_24 AC 193 ms
163,192 KB
testcase_25 AC 186 ms
161,992 KB
testcase_26 AC 187 ms
162,796 KB
testcase_27 AC 74 ms
97,392 KB
testcase_28 AC 76 ms
97,036 KB
testcase_29 AC 76 ms
96,912 KB
testcase_30 AC 72 ms
98,356 KB
testcase_31 AC 115 ms
106,180 KB
testcase_32 AC 188 ms
161,304 KB
testcase_33 AC 110 ms
116,108 KB
testcase_34 AC 110 ms
116,208 KB
testcase_35 AC 75 ms
101,132 KB
testcase_36 AC 107 ms
105,948 KB
testcase_37 AC 125 ms
129,912 KB
testcase_38 AC 125 ms
128,460 KB
testcase_39 AC 85 ms
106,992 KB
testcase_40 AC 92 ms
107,916 KB
testcase_41 AC 170 ms
143,640 KB
testcase_42 AC 174 ms
143,528 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