結果

問題 No.1884 Sequence
ユーザー n_nan_na
提出日時 2022-03-26 00:15:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 675 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 136,080 KB
最終ジャッジ日時 2024-10-14 08:38:08
合計ジャッジ時間 6,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,404 KB
testcase_01 AC 37 ms
52,332 KB
testcase_02 AC 37 ms
52,264 KB
testcase_03 AC 37 ms
53,292 KB
testcase_04 AC 36 ms
52,088 KB
testcase_05 AC 37 ms
53,460 KB
testcase_06 WA -
testcase_07 AC 37 ms
52,956 KB
testcase_08 AC 37 ms
53,552 KB
testcase_09 AC 36 ms
52,328 KB
testcase_10 AC 179 ms
135,508 KB
testcase_11 AC 175 ms
135,748 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 74 ms
92,428 KB
testcase_15 AC 135 ms
107,380 KB
testcase_16 AC 167 ms
135,304 KB
testcase_17 AC 101 ms
115,108 KB
testcase_18 AC 110 ms
107,548 KB
testcase_19 AC 102 ms
116,704 KB
testcase_20 AC 136 ms
118,632 KB
testcase_21 AC 114 ms
112,732 KB
testcase_22 AC 141 ms
119,728 KB
testcase_23 AC 170 ms
135,920 KB
testcase_24 AC 169 ms
135,360 KB
testcase_25 AC 170 ms
134,688 KB
testcase_26 AC 173 ms
136,080 KB
testcase_27 AC 73 ms
97,120 KB
testcase_28 AC 72 ms
95,884 KB
testcase_29 AC 73 ms
96,764 KB
testcase_30 AC 73 ms
96,812 KB
testcase_31 AC 114 ms
112,600 KB
testcase_32 AC 172 ms
134,748 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 83 ms
99,612 KB
testcase_36 AC 110 ms
102,116 KB
testcase_37 AC 105 ms
102,508 KB
testcase_38 AC 102 ms
100,688 KB
testcase_39 AC 91 ms
101,580 KB
testcase_40 AC 91 ms
102,568 KB
testcase_41 AC 171 ms
122,912 KB
testcase_42 AC 166 ms
122,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
num = A.count(0)

s = set(A)

A.sort(reverse = True)
d = 10**16

for i in range(N-1):
    if A[i+1] == 0:
        break
    tmp = A[i] - A[i+1]
    d = min(tmp, d)

if num >= N-1:
    ans = "Yes"
elif d == 0:
    if 0 in s and len(s) == 2:
        ans = "Yes"
    else:
        ans = "No"
else:
    ans = "Yes"
    for i in range(N-1):
        if A[i+1] == 0:
            break
        diff = A[i] - A[i+1]
        if diff == d:
            continue
        if diff%d != 0:
            ans = "No"
        elif diff%d == 0:
            num -= diff//d - 1
            if num < 0:
                ans = "No"
    
print(ans)

0