結果

問題 No.1884 Sequence
ユーザー ikomaikoma
提出日時 2022-03-25 23:08:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 520 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 180,608 KB
最終ジャッジ日時 2024-10-14 07:14:50
合計ジャッジ時間 6,807 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,352 KB
testcase_01 AC 37 ms
52,460 KB
testcase_02 AC 36 ms
52,000 KB
testcase_03 AC 37 ms
52,892 KB
testcase_04 AC 36 ms
52,756 KB
testcase_05 AC 37 ms
52,932 KB
testcase_06 AC 37 ms
52,692 KB
testcase_07 AC 38 ms
52,548 KB
testcase_08 AC 37 ms
52,640 KB
testcase_09 AC 37 ms
51,996 KB
testcase_10 AC 216 ms
179,924 KB
testcase_11 AC 211 ms
180,220 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 74 ms
92,280 KB
testcase_15 AC 149 ms
113,028 KB
testcase_16 AC 208 ms
180,400 KB
testcase_17 AC 107 ms
121,988 KB
testcase_18 AC 128 ms
117,552 KB
testcase_19 AC 111 ms
127,868 KB
testcase_20 AC 135 ms
116,324 KB
testcase_21 AC 115 ms
118,472 KB
testcase_22 AC 140 ms
117,552 KB
testcase_23 AC 214 ms
180,316 KB
testcase_24 AC 212 ms
180,424 KB
testcase_25 AC 216 ms
179,192 KB
testcase_26 AC 221 ms
180,608 KB
testcase_27 AC 72 ms
96,432 KB
testcase_28 AC 72 ms
96,184 KB
testcase_29 AC 75 ms
97,628 KB
testcase_30 AC 73 ms
96,664 KB
testcase_31 AC 128 ms
124,472 KB
testcase_32 AC 217 ms
178,952 KB
testcase_33 AC 96 ms
101,944 KB
testcase_34 AC 97 ms
102,444 KB
testcase_35 AC 73 ms
96,800 KB
testcase_36 AC 96 ms
100,016 KB
testcase_37 AC 113 ms
116,488 KB
testcase_38 AC 111 ms
114,932 KB
testcase_39 AC 90 ms
104,432 KB
testcase_40 AC 98 ms
105,556 KB
testcase_41 AC 194 ms
155,864 KB
testcase_42 AC 195 ms
155,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def solve():
    N=int(input())
    A=list(map(int,input().split()))
    if len(set(A)-set([0]))<=1:return True
    A.sort()
    cnt0=0
    d_lst = []
    for i in range(N-1):
        if A[i]==0:
            cnt0+=1
            continue
        d = A[i+1]-A[i]
        d_lst.append(d)
    d_min = min(d_lst)
    if d_min==0:
        return False
    for d in d_lst:
        if d%d_min!=0:return False
        cnt0 -= d//d_min-1
    return cnt0>=0

print("Yes" if solve() else "No")
0