結果

問題 No.1884 Sequence
ユーザー kept1994kept1994
提出日時 2022-04-23 23:58:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 634 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 132,204 KB
最終ジャッジ日時 2024-06-25 08:56:18
合計ジャッジ時間 6,574 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,140 KB
testcase_01 AC 39 ms
53,820 KB
testcase_02 AC 39 ms
52,980 KB
testcase_03 AC 38 ms
52,188 KB
testcase_04 AC 37 ms
52,284 KB
testcase_05 AC 38 ms
52,768 KB
testcase_06 AC 37 ms
52,932 KB
testcase_07 AC 39 ms
53,664 KB
testcase_08 AC 39 ms
52,408 KB
testcase_09 WA -
testcase_10 AC 202 ms
132,052 KB
testcase_11 AC 198 ms
131,924 KB
testcase_12 AC 66 ms
89,816 KB
testcase_13 AC 69 ms
93,848 KB
testcase_14 AC 72 ms
92,468 KB
testcase_15 AC 124 ms
107,852 KB
testcase_16 AC 168 ms
131,936 KB
testcase_17 AC 94 ms
109,620 KB
testcase_18 AC 108 ms
108,020 KB
testcase_19 AC 98 ms
109,128 KB
testcase_20 AC 116 ms
106,396 KB
testcase_21 AC 103 ms
107,832 KB
testcase_22 AC 122 ms
107,464 KB
testcase_23 AC 168 ms
131,680 KB
testcase_24 AC 164 ms
132,204 KB
testcase_25 AC 167 ms
131,032 KB
testcase_26 AC 167 ms
131,984 KB
testcase_27 AC 74 ms
97,948 KB
testcase_28 AC 73 ms
97,576 KB
testcase_29 AC 76 ms
96,752 KB
testcase_30 AC 75 ms
96,884 KB
testcase_31 AC 111 ms
102,728 KB
testcase_32 WA -
testcase_33 AC 127 ms
130,180 KB
testcase_34 AC 127 ms
129,936 KB
testcase_35 AC 81 ms
102,336 KB
testcase_36 AC 119 ms
114,424 KB
testcase_37 AC 132 ms
130,376 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 156 ms
121,140 KB
testcase_42 AC 152 ms
120,888 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 g == 0:
        print("Yes")
        return
    
    ans = 0
    for d in diff:
        ans += d // g - 1
    # print(ans)
    if ans <= zero:
        print("Yes")
    else:
        print("No")

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