結果

問題 No.1884 Sequence
ユーザー hir355hir355
提出日時 2022-03-25 21:34:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 118,584 KB
最終ジャッジ日時 2024-10-14 05:28:32
合計ジャッジ時間 6,123 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,216 KB
testcase_01 AC 37 ms
53,660 KB
testcase_02 AC 38 ms
53,024 KB
testcase_03 AC 37 ms
53,280 KB
testcase_04 AC 38 ms
52,900 KB
testcase_05 AC 36 ms
53,236 KB
testcase_06 AC 37 ms
53,104 KB
testcase_07 AC 38 ms
54,220 KB
testcase_08 AC 38 ms
52,736 KB
testcase_09 AC 37 ms
53,928 KB
testcase_10 AC 182 ms
117,956 KB
testcase_11 AC 184 ms
118,064 KB
testcase_12 AC 67 ms
89,584 KB
testcase_13 AC 72 ms
94,672 KB
testcase_14 AC 69 ms
91,272 KB
testcase_15 AC 118 ms
107,648 KB
testcase_16 AC 151 ms
117,968 KB
testcase_17 AC 86 ms
108,700 KB
testcase_18 AC 97 ms
107,732 KB
testcase_19 AC 92 ms
109,160 KB
testcase_20 AC 105 ms
107,020 KB
testcase_21 AC 93 ms
106,724 KB
testcase_22 AC 114 ms
107,188 KB
testcase_23 AC 154 ms
118,584 KB
testcase_24 AC 153 ms
118,484 KB
testcase_25 AC 152 ms
117,320 KB
testcase_26 AC 152 ms
118,144 KB
testcase_27 AC 73 ms
97,232 KB
testcase_28 AC 75 ms
98,340 KB
testcase_29 AC 75 ms
97,496 KB
testcase_30 AC 74 ms
98,304 KB
testcase_31 AC 106 ms
106,768 KB
testcase_32 AC 150 ms
117,004 KB
testcase_33 AC 111 ms
116,244 KB
testcase_34 AC 111 ms
115,988 KB
testcase_35 AC 76 ms
100,952 KB
testcase_36 AC 107 ms
106,232 KB
testcase_37 AC 113 ms
116,368 KB
testcase_38 AC 113 ms
114,860 KB
testcase_39 AC 83 ms
104,240 KB
testcase_40 AC 85 ms
106,804 KB
testcase_41 AC 141 ms
110,028 KB
testcase_42 AC 140 ms
109,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
n = int(input())
a = list(map(int, input().split()))
b = []
cnt = 0
for x in a:
    if x == 0:
        cnt += 1
    else:
        b.append(x)
b.sort()
if len(b) <= 1:
    print('Yes')
else:
    g = b[1] - b[0]
    for i in range(len(b) - 1):
        if b[i + 1] - b[i] == 0:
            g = 0
            break
        else:
            g = gcd(g, b[i + 1] - b[i])
    if g == 0:
        if b[-1] - b[0] == 0:
            print('Yes')
        else:
            print('No')
    elif (b[-1] - b[0]) // g + 1 - len(b) <= cnt:
        print('Yes')
    else:
        print('No')
0