結果

問題 No.1884 Sequence
ユーザー shinichishinichi
提出日時 2022-03-25 22:28:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 714 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 137,304 KB
最終ジャッジ日時 2024-10-14 06:24:20
合計ジャッジ時間 6,802 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,660 KB
testcase_01 AC 44 ms
53,948 KB
testcase_02 AC 44 ms
54,792 KB
testcase_03 AC 41 ms
54,232 KB
testcase_04 AC 43 ms
55,872 KB
testcase_05 AC 42 ms
54,644 KB
testcase_06 AC 40 ms
54,716 KB
testcase_07 AC 41 ms
55,712 KB
testcase_08 AC 41 ms
54,428 KB
testcase_09 AC 40 ms
54,356 KB
testcase_10 AC 212 ms
137,124 KB
testcase_11 AC 208 ms
137,304 KB
testcase_12 AC 73 ms
94,028 KB
testcase_13 AC 75 ms
97,400 KB
testcase_14 AC 87 ms
98,000 KB
testcase_15 AC 146 ms
113,916 KB
testcase_16 AC 178 ms
137,052 KB
testcase_17 AC 105 ms
106,556 KB
testcase_18 AC 127 ms
115,752 KB
testcase_19 AC 105 ms
104,816 KB
testcase_20 AC 129 ms
106,384 KB
testcase_21 AC 115 ms
106,388 KB
testcase_22 AC 141 ms
111,804 KB
testcase_23 AC 175 ms
137,084 KB
testcase_24 AC 177 ms
136,952 KB
testcase_25 AC 179 ms
136,328 KB
testcase_26 AC 177 ms
137,212 KB
testcase_27 AC 78 ms
102,060 KB
testcase_28 AC 80 ms
101,188 KB
testcase_29 AC 81 ms
101,796 KB
testcase_30 AC 83 ms
101,496 KB
testcase_31 AC 123 ms
101,556 KB
testcase_32 AC 183 ms
136,832 KB
testcase_33 AC 109 ms
104,788 KB
testcase_34 AC 111 ms
104,932 KB
testcase_35 AC 95 ms
104,436 KB
testcase_36 AC 116 ms
99,876 KB
testcase_37 AC 111 ms
104,820 KB
testcase_38 AC 106 ms
102,740 KB
testcase_39 AC 101 ms
105,968 KB
testcase_40 AC 103 ms
106,248 KB
testcase_41 AC 177 ms
126,828 KB
testcase_42 AC 169 ms
126,356 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)
check1, check2 = False, False
for key, value in AA.items():
    if key != 0:
        if value >= 2 and check2:
            exit(print("No"))
        if value >= 2:
            check1 = True
        if value == 1 and check1:
            exit(print("No"))
        if value == 1:
            check2 = True


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

0