結果

問題 No.1884 Sequence
ユーザー kept1994kept1994
提出日時 2022-04-24 00:06:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 132,152 KB
最終ジャッジ日時 2024-06-25 09:03:20
合計ジャッジ時間 6,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,740 KB
testcase_01 AC 40 ms
52,820 KB
testcase_02 AC 37 ms
52,468 KB
testcase_03 AC 38 ms
53,420 KB
testcase_04 AC 38 ms
52,620 KB
testcase_05 AC 37 ms
53,360 KB
testcase_06 AC 38 ms
53,224 KB
testcase_07 AC 38 ms
52,436 KB
testcase_08 AC 37 ms
53,064 KB
testcase_09 AC 39 ms
54,068 KB
testcase_10 AC 204 ms
131,780 KB
testcase_11 AC 200 ms
131,904 KB
testcase_12 AC 67 ms
88,860 KB
testcase_13 AC 69 ms
93,508 KB
testcase_14 AC 70 ms
92,028 KB
testcase_15 AC 122 ms
107,904 KB
testcase_16 AC 163 ms
131,420 KB
testcase_17 AC 92 ms
109,556 KB
testcase_18 AC 106 ms
107,968 KB
testcase_19 AC 98 ms
108,572 KB
testcase_20 AC 115 ms
106,528 KB
testcase_21 AC 101 ms
107,768 KB
testcase_22 AC 119 ms
107,200 KB
testcase_23 AC 164 ms
131,740 KB
testcase_24 AC 166 ms
132,152 KB
testcase_25 AC 167 ms
130,728 KB
testcase_26 AC 163 ms
132,016 KB
testcase_27 AC 74 ms
96,384 KB
testcase_28 AC 72 ms
96,000 KB
testcase_29 AC 71 ms
96,384 KB
testcase_30 AC 71 ms
96,128 KB
testcase_31 AC 105 ms
102,784 KB
testcase_32 AC 163 ms
130,252 KB
testcase_33 AC 130 ms
130,244 KB
testcase_34 AC 128 ms
130,220 KB
testcase_35 AC 79 ms
102,016 KB
testcase_36 AC 117 ms
114,252 KB
testcase_37 AC 124 ms
129,932 KB
testcase_38 AC 123 ms
128,280 KB
testcase_39 AC 89 ms
107,264 KB
testcase_40 AC 91 ms
107,844 KB
testcase_41 AC 151 ms
120,832 KB
testcase_42 AC 152 ms
120,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
import math

def main():
    N = int(input())
    A = list(map(int, input().split()))
    aa = []
    zero = 0
    for i in A:
        if i != 0:
            aa.append(i)
        else:
            zero += 1
    aa.sort()
    diff = []
    g = 0
    for i in range(len(aa) - 1):
        diff.append(aa[i + 1] - aa[i])
        g = math.gcd(g, aa[i + 1] - aa[i])

    if 0 in diff and g != 0:
        print("No")
        return
    if g == 0:
        print("Yes")
        return
    ans = 0
    for d in diff:
        ans += d // g - 1
    if ans <= zero:
        print("Yes")
    else:
        print("No")

if __name__ == '__main__':
    main()
0