結果

問題 No.1884 Sequence
ユーザー ygd.ygd.
提出日時 2022-03-26 10:12:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 1,221 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 36,720 KB
最終ジャッジ日時 2024-10-15 02:02:37
合計ジャッジ時間 7,871 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 349 ms
36,652 KB
testcase_11 AC 342 ms
36,528 KB
testcase_12 AC 58 ms
13,608 KB
testcase_13 AC 65 ms
13,864 KB
testcase_14 AC 61 ms
14,420 KB
testcase_15 AC 211 ms
25,480 KB
testcase_16 AC 359 ms
36,720 KB
testcase_17 AC 120 ms
20,444 KB
testcase_18 AC 169 ms
26,272 KB
testcase_19 AC 140 ms
23,564 KB
testcase_20 AC 165 ms
20,984 KB
testcase_21 AC 129 ms
19,572 KB
testcase_22 AC 183 ms
24,240 KB
testcase_23 AC 358 ms
36,720 KB
testcase_24 AC 359 ms
36,544 KB
testcase_25 AC 327 ms
36,560 KB
testcase_26 AC 362 ms
36,720 KB
testcase_27 AC 68 ms
14,104 KB
testcase_28 AC 68 ms
14,108 KB
testcase_29 AC 67 ms
13,980 KB
testcase_30 AC 68 ms
14,112 KB
testcase_31 AC 129 ms
24,196 KB
testcase_32 AC 247 ms
36,488 KB
testcase_33 AC 122 ms
32,632 KB
testcase_34 AC 121 ms
32,632 KB
testcase_35 AC 75 ms
15,940 KB
testcase_36 AC 108 ms
25,784 KB
testcase_37 AC 127 ms
32,580 KB
testcase_38 AC 123 ms
32,640 KB
testcase_39 AC 83 ms
18,608 KB
testcase_40 AC 89 ms
19,548 KB
testcase_41 AC 285 ms
27,964 KB
testcase_42 AC 289 ms
28,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def main():
    N = int(input())
    A = list(map(int,input().split()))
    X = []
    for a in A:
        if a == 0: continue
        X.append(a)
    X.sort()
    if len(X) <= 1:
        print('Yes');exit()
    if len(set(X)) == 1:
        print('Yes');exit()
    if len(set(X)) < len(X):
        print('No');exit()
    M = len(X)
    for i in range(M-1):
        if i == 0:
            g = X[1] - X[0]
        else:
            g = math.gcd(g, X[i+1] - X[i])
    
    num = 0
    for i in range(M-1):
        num += ((X[i+1] - X[i]) // g) - 1 #間の数なので植木算
    #print(num)
    zeros = N - M
    if zeros >= num:
        print('Yes')
    else:
        print('No')


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