結果

問題 No.1884 Sequence
ユーザー shinichishinichi
提出日時 2022-03-25 22:20:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 137,744 KB
最終ジャッジ日時 2024-10-14 06:14:08
合計ジャッジ時間 6,795 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,880 KB
testcase_01 AC 43 ms
55,664 KB
testcase_02 AC 42 ms
54,772 KB
testcase_03 AC 43 ms
54,208 KB
testcase_04 AC 42 ms
53,816 KB
testcase_05 AC 42 ms
53,936 KB
testcase_06 AC 42 ms
54,660 KB
testcase_07 AC 42 ms
55,216 KB
testcase_08 AC 41 ms
54,044 KB
testcase_09 WA -
testcase_10 AC 229 ms
137,304 KB
testcase_11 AC 222 ms
137,520 KB
testcase_12 AC 75 ms
93,472 KB
testcase_13 AC 79 ms
97,632 KB
testcase_14 AC 85 ms
96,556 KB
testcase_15 AC 152 ms
114,380 KB
testcase_16 AC 187 ms
137,252 KB
testcase_17 AC 109 ms
106,596 KB
testcase_18 AC 132 ms
115,976 KB
testcase_19 AC 111 ms
105,100 KB
testcase_20 AC 136 ms
107,080 KB
testcase_21 AC 120 ms
106,248 KB
testcase_22 AC 148 ms
112,132 KB
testcase_23 AC 182 ms
137,232 KB
testcase_24 AC 186 ms
137,088 KB
testcase_25 AC 188 ms
136,784 KB
testcase_26 AC 192 ms
137,744 KB
testcase_27 AC 83 ms
101,656 KB
testcase_28 AC 82 ms
101,968 KB
testcase_29 AC 83 ms
101,168 KB
testcase_30 AC 82 ms
101,428 KB
testcase_31 AC 130 ms
101,916 KB
testcase_32 WA -
testcase_33 AC 110 ms
103,936 KB
testcase_34 AC 112 ms
104,064 KB
testcase_35 AC 99 ms
104,660 KB
testcase_36 AC 120 ms
100,004 KB
testcase_37 AC 114 ms
104,812 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 184 ms
126,876 KB
testcase_42 AC 179 ms
126,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from collections import Counter

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


A.sort()
zeros = A.count(0)
nonzeros = N - zeros
k = 0
for i in range(zeros, N-1):
    a, b = A[i], A[i+1]
    k = math.gcd(k, b - a)

AA = Counter(A)
cant = False
for key, value in AA.items():
    if key != 0 and value >= 2:
        if cant:
            exit(print("No"))
        else:
            cant = True

if k != 0:
    need = (A[-1] - A[zeros]) // k + 1 - nonzeros
    if need <= zeros:
        print("Yes")
    else:
        print("No")
else:
    print("Yes")

0