結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 34 ms
52,224 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 34 ms
51,840 KB
testcase_08 AC 34 ms
52,352 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 176 ms
162,660 KB
testcase_11 AC 178 ms
163,132 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 75 ms
91,648 KB
testcase_15 AC 132 ms
107,776 KB
testcase_16 AC 186 ms
162,676 KB
testcase_17 AC 95 ms
109,792 KB
testcase_18 AC 107 ms
108,324 KB
testcase_19 AC 95 ms
108,672 KB
testcase_20 AC 113 ms
106,368 KB
testcase_21 AC 97 ms
114,688 KB
testcase_22 AC 118 ms
106,872 KB
testcase_23 AC 177 ms
162,796 KB
testcase_24 AC 179 ms
163,268 KB
testcase_25 AC 179 ms
162,204 KB
testcase_26 AC 180 ms
162,816 KB
testcase_27 AC 72 ms
96,692 KB
testcase_28 AC 74 ms
96,896 KB
testcase_29 AC 73 ms
97,280 KB
testcase_30 AC 74 ms
97,024 KB
testcase_31 AC 108 ms
106,112 KB
testcase_32 AC 178 ms
160,952 KB
testcase_33 AC 103 ms
115,972 KB
testcase_34 AC 101 ms
115,968 KB
testcase_35 AC 71 ms
98,944 KB
testcase_36 AC 99 ms
106,140 KB
testcase_37 AC 115 ms
130,228 KB
testcase_38 AC 118 ms
128,524 KB
testcase_39 AC 80 ms
106,752 KB
testcase_40 AC 82 ms
107,520 KB
testcase_41 AC 158 ms
143,604 KB
testcase_42 AC 159 ms
143,584 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