結果

問題 No.1884 Sequence
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-27 09:26:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 606 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 148,392 KB
最終ジャッジ日時 2024-11-06 04:33:43
合計ジャッジ時間 6,302 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,680 KB
testcase_01 AC 40 ms
52,728 KB
testcase_02 AC 40 ms
52,752 KB
testcase_03 AC 39 ms
53,464 KB
testcase_04 AC 39 ms
52,268 KB
testcase_05 AC 40 ms
52,948 KB
testcase_06 AC 39 ms
53,060 KB
testcase_07 AC 40 ms
53,928 KB
testcase_08 AC 40 ms
52,540 KB
testcase_09 AC 41 ms
53,432 KB
testcase_10 AC 153 ms
117,700 KB
testcase_11 AC 152 ms
118,152 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 81 ms
91,988 KB
testcase_15 AC 132 ms
108,188 KB
testcase_16 AC 160 ms
117,936 KB
testcase_17 AC 98 ms
109,864 KB
testcase_18 AC 106 ms
108,388 KB
testcase_19 AC 99 ms
110,004 KB
testcase_20 AC 118 ms
107,308 KB
testcase_21 AC 101 ms
106,240 KB
testcase_22 AC 120 ms
107,724 KB
testcase_23 AC 161 ms
117,908 KB
testcase_24 AC 162 ms
118,052 KB
testcase_25 AC 162 ms
116,872 KB
testcase_26 AC 164 ms
118,596 KB
testcase_27 AC 77 ms
96,528 KB
testcase_28 AC 77 ms
96,640 KB
testcase_29 AC 82 ms
97,172 KB
testcase_30 AC 81 ms
96,944 KB
testcase_31 AC 120 ms
106,856 KB
testcase_32 AC 185 ms
148,392 KB
testcase_33 AC 118 ms
116,272 KB
testcase_34 AC 119 ms
116,316 KB
testcase_35 AC 88 ms
101,204 KB
testcase_36 AC 122 ms
106,496 KB
testcase_37 AC 120 ms
116,344 KB
testcase_38 AC 119 ms
114,604 KB
testcase_39 AC 95 ms
105,372 KB
testcase_40 AC 101 ms
106,776 KB
testcase_41 AC 151 ms
110,248 KB
testcase_42 AC 154 ms
109,892 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)
if z == n:
    print('Yes')
    exit()
d = 10**18

B.sort()
for i in range(len(B)-1):
    d = min(d, B[i+1]-B[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