結果

問題 No.1884 Sequence
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-27 09:22:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 602 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 148,536 KB
最終ジャッジ日時 2024-11-06 04:28:51
合計ジャッジ時間 7,977 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,916 KB
testcase_01 AC 38 ms
52,548 KB
testcase_02 AC 38 ms
53,364 KB
testcase_03 AC 39 ms
52,152 KB
testcase_04 AC 39 ms
52,804 KB
testcase_05 AC 38 ms
53,020 KB
testcase_06 AC 39 ms
53,124 KB
testcase_07 AC 38 ms
52,756 KB
testcase_08 AC 38 ms
53,368 KB
testcase_09 AC 39 ms
52,460 KB
testcase_10 AC 153 ms
117,532 KB
testcase_11 AC 150 ms
117,668 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 78 ms
92,956 KB
testcase_15 AC 127 ms
108,252 KB
testcase_16 AC 159 ms
118,064 KB
testcase_17 AC 99 ms
109,340 KB
testcase_18 AC 106 ms
108,724 KB
testcase_19 AC 100 ms
109,828 KB
testcase_20 AC 120 ms
107,316 KB
testcase_21 AC 103 ms
106,600 KB
testcase_22 AC 122 ms
107,660 KB
testcase_23 AC 160 ms
117,804 KB
testcase_24 AC 161 ms
117,804 KB
testcase_25 AC 160 ms
117,032 KB
testcase_26 AC 161 ms
118,332 KB
testcase_27 AC 77 ms
97,644 KB
testcase_28 AC 78 ms
97,148 KB
testcase_29 AC 77 ms
97,756 KB
testcase_30 AC 77 ms
98,772 KB
testcase_31 AC 119 ms
106,296 KB
testcase_32 AC 185 ms
148,536 KB
testcase_33 AC 117 ms
116,452 KB
testcase_34 AC 117 ms
115,948 KB
testcase_35 AC 88 ms
102,452 KB
testcase_36 AC 122 ms
106,856 KB
testcase_37 AC 117 ms
116,328 KB
testcase_38 AC 114 ms
114,472 KB
testcase_39 AC 97 ms
105,492 KB
testcase_40 AC 103 ms
108,444 KB
testcase_41 AC 154 ms
110,624 KB
testcase_42 AC 151 ms
109,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
A.sort()
z = 0
B = []
for a in A:
    if a == 0:
        z += 1
    else:
        B.append(a)
d = 10**18
for i in range(n-1):
    if A[i] == 0 or A[i+1] == 0:
        continue
    d = min(d, A[i+1]-A[i])

if d == 10**18:
    print('Yes')
    exit()

if d == 0:
    if len(set(B)) == 1:
        print('Yes')
    else:
        print('No')
    exit()

B.sort(reverse=True)
cur = B[0]+d
cnt = 0
for b in B:
    if (cur-b)%d != 0:
        print('No')
        exit()
    cnt += (cur-b)//d-1
    cur = b
if cnt <= z:
    print('Yes')
else:
    print('No')
0