結果

問題 No.1884 Sequence
ユーザー tktk_snsntktk_snsn
提出日時 2022-03-27 13:48:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,428 KB
最終ジャッジ日時 2024-11-06 08:27:06
合計ジャッジ時間 9,027 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 29 ms
11,008 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 29 ms
11,008 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 318 ms
42,424 KB
testcase_11 AC 330 ms
41,432 KB
testcase_12 AC 69 ms
13,688 KB
testcase_13 AC 71 ms
13,816 KB
testcase_14 AC 71 ms
14,404 KB
testcase_15 AC 209 ms
26,296 KB
testcase_16 AC 331 ms
42,428 KB
testcase_17 AC 128 ms
20,672 KB
testcase_18 AC 171 ms
27,880 KB
testcase_19 AC 146 ms
25,116 KB
testcase_20 AC 171 ms
21,092 KB
testcase_21 AC 136 ms
19,556 KB
testcase_22 AC 191 ms
25,744 KB
testcase_23 AC 335 ms
41,628 KB
testcase_24 AC 328 ms
42,284 KB
testcase_25 AC 305 ms
41,548 KB
testcase_26 AC 332 ms
41,600 KB
testcase_27 AC 77 ms
14,188 KB
testcase_28 AC 79 ms
14,184 KB
testcase_29 AC 78 ms
14,184 KB
testcase_30 AC 78 ms
14,056 KB
testcase_31 AC 110 ms
24,476 KB
testcase_32 AC 149 ms
37,420 KB
testcase_33 AC 121 ms
32,864 KB
testcase_34 AC 124 ms
32,736 KB
testcase_35 AC 82 ms
16,044 KB
testcase_36 AC 110 ms
26,540 KB
testcase_37 AC 130 ms
32,860 KB
testcase_38 AC 127 ms
32,864 KB
testcase_39 AC 92 ms
18,756 KB
testcase_40 AC 96 ms
19,532 KB
testcase_41 AC 278 ms
30,096 KB
testcase_42 AC 283 ms
29,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd


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

    zero = 0
    B = []
    for a in A:
        if a == 0:
            zero += 1
        else:
            B.append(a)

    if len(set(B)) == 1:
        return True
    if len(set(B)) != len(B):
        return False

    B.sort()
    C = []
    for i in range(1, len(B)):
        C.append(B[i] - B[i-1])

    g = 0
    for c in C:
        g = gcd(g, c)

    cnt = 0
    for c in C:
        cnt += (c - 1) // g
    return zero >= cnt


if main():
    print("Yes")
else:
    print("No")
0