結果

問題 No.1884 Sequence
ユーザー ikomaikoma
提出日時 2022-03-25 23:05:39
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 495 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 179,548 KB
最終ジャッジ日時 2024-10-14 07:12:11
合計ジャッジ時間 6,064 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,996 KB
testcase_01 AC 38 ms
53,740 KB
testcase_02 AC 37 ms
52,200 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 37 ms
53,556 KB
testcase_06 AC 38 ms
52,276 KB
testcase_07 AC 36 ms
52,572 KB
testcase_08 AC 37 ms
52,092 KB
testcase_09 AC 37 ms
52,160 KB
testcase_10 AC 145 ms
117,988 KB
testcase_11 AC 143 ms
117,844 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 72 ms
90,280 KB
testcase_15 AC 118 ms
106,296 KB
testcase_16 AC 152 ms
118,000 KB
testcase_17 AC 89 ms
106,272 KB
testcase_18 AC 98 ms
106,564 KB
testcase_19 AC 90 ms
103,696 KB
testcase_20 AC 109 ms
105,688 KB
testcase_21 AC 99 ms
106,860 KB
testcase_22 AC 113 ms
106,192 KB
testcase_23 AC 153 ms
118,252 KB
testcase_24 AC 152 ms
118,012 KB
testcase_25 AC 151 ms
116,976 KB
testcase_26 AC 151 ms
118,792 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 72 ms
95,992 KB
testcase_30 AC 73 ms
97,256 KB
testcase_31 AC 125 ms
106,828 KB
testcase_32 AC 210 ms
179,548 KB
testcase_33 AC 109 ms
116,284 KB
testcase_34 AC 108 ms
116,408 KB
testcase_35 AC 83 ms
100,212 KB
testcase_36 AC 112 ms
106,608 KB
testcase_37 AC 109 ms
116,508 KB
testcase_38 AC 110 ms
114,568 KB
testcase_39 AC 89 ms
104,544 KB
testcase_40 AC 94 ms
106,340 KB
testcase_41 AC 143 ms
110,532 KB
testcase_42 AC 140 ms
109,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def solve():
    N=int(input())
    A=list(map(int,input().split()))
    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 len(set(A)-set([0]))==1
    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