結果

問題 No.1884 Sequence
ユーザー customaddonecustomaddone
提出日時 2022-03-26 15:50:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 1,373 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 157,292 KB
最終ジャッジ日時 2024-10-15 07:32:24
合計ジャッジ時間 7,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
61,652 KB
testcase_01 AC 51 ms
62,324 KB
testcase_02 AC 50 ms
61,964 KB
testcase_03 AC 51 ms
63,544 KB
testcase_04 AC 52 ms
61,888 KB
testcase_05 AC 50 ms
61,304 KB
testcase_06 AC 51 ms
61,392 KB
testcase_07 AC 50 ms
61,320 KB
testcase_08 AC 52 ms
62,572 KB
testcase_09 AC 53 ms
62,428 KB
testcase_10 AC 236 ms
157,292 KB
testcase_11 AC 232 ms
157,252 KB
testcase_12 AC 78 ms
93,716 KB
testcase_13 AC 80 ms
97,120 KB
testcase_14 AC 84 ms
96,648 KB
testcase_15 AC 149 ms
125,028 KB
testcase_16 AC 195 ms
157,132 KB
testcase_17 AC 115 ms
112,168 KB
testcase_18 AC 133 ms
129,528 KB
testcase_19 AC 120 ms
115,848 KB
testcase_20 AC 140 ms
117,856 KB
testcase_21 AC 123 ms
109,468 KB
testcase_22 AC 146 ms
121,824 KB
testcase_23 AC 196 ms
156,920 KB
testcase_24 AC 197 ms
157,116 KB
testcase_25 AC 196 ms
156,280 KB
testcase_26 AC 199 ms
157,176 KB
testcase_27 AC 84 ms
101,104 KB
testcase_28 AC 85 ms
100,728 KB
testcase_29 AC 84 ms
102,220 KB
testcase_30 AC 84 ms
100,744 KB
testcase_31 AC 127 ms
113,976 KB
testcase_32 AC 187 ms
155,628 KB
testcase_33 AC 125 ms
123,948 KB
testcase_34 AC 125 ms
124,188 KB
testcase_35 AC 96 ms
105,180 KB
testcase_36 AC 117 ms
113,476 KB
testcase_37 AC 125 ms
123,880 KB
testcase_38 AC 124 ms
122,528 KB
testcase_39 AC 100 ms
105,920 KB
testcase_40 AC 102 ms
101,780 KB
testcase_41 AC 178 ms
142,464 KB
testcase_42 AC 179 ms
142,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
from heapq import heapify, heappop, heappush
import math
from copy import deepcopy
from itertools import combinations, permutations, product, combinations_with_replacement
from bisect import bisect_left, bisect_right

import sys

def input():
    return sys.stdin.readline().rstrip()
def getN():
    return int(input())
def getNM():
    return map(int, input().split())
def getList():
    return list(map(int, input().split()))
def getListGraph():
    return list(map(lambda x:int(x) - 1, input().split()))
def getArray(intn):
    return [int(input()) for i in range(intn)]

mod = 10 ** 9 + 7
MOD = 998244353
sys.setrecursionlimit(10000000)
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
inf = float('inf')
eps = 10 ** (-15)
dy = [0, 1, 0, -1]
dx = [1, 0, -1, 0]

#############
# Main Code #
#############

"""
等差数列
gcdする 距離を保ったまま置くことは可能か
順番は一定 ソートする
"""

N = getN()
A = sorted([i for i in getList() if i != 0])

# 全て同じ
if all([(a == A[0]) for a in A]):
    print('Yes')
    exit()

if len(A) != len(set(A)):
    print('No')
    exit()

g = 0
for i in range(len(A) - 1):
    g = math.gcd(g, A[i + 1] - A[i])
ans = 1
for i in range(len(A) - 1):
    ans += (A[i + 1] - A[i]) // g

if ans <= N:
    print('Yes')
else:
    print('No')
0