結果

問題 No.1884 Sequence
ユーザー chineristACchineristAC
提出日時 2022-03-25 23:17:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 123,452 KB
最終ジャッジ日時 2024-10-14 07:27:08
合計ジャッジ時間 6,580 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,676 KB
testcase_01 AC 47 ms
56,440 KB
testcase_02 AC 45 ms
55,984 KB
testcase_03 AC 45 ms
56,168 KB
testcase_04 AC 45 ms
55,920 KB
testcase_05 AC 47 ms
57,088 KB
testcase_06 AC 46 ms
56,904 KB
testcase_07 AC 45 ms
56,012 KB
testcase_08 AC 46 ms
57,448 KB
testcase_09 AC 45 ms
56,188 KB
testcase_10 AC 195 ms
123,072 KB
testcase_11 AC 195 ms
123,192 KB
testcase_12 AC 72 ms
92,156 KB
testcase_13 AC 76 ms
96,308 KB
testcase_14 AC 80 ms
96,064 KB
testcase_15 AC 137 ms
106,868 KB
testcase_16 AC 162 ms
122,956 KB
testcase_17 AC 109 ms
102,880 KB
testcase_18 AC 119 ms
109,064 KB
testcase_19 AC 109 ms
102,352 KB
testcase_20 AC 127 ms
105,028 KB
testcase_21 AC 108 ms
106,292 KB
testcase_22 AC 132 ms
106,052 KB
testcase_23 AC 162 ms
123,204 KB
testcase_24 AC 161 ms
123,452 KB
testcase_25 AC 161 ms
122,316 KB
testcase_26 AC 163 ms
122,876 KB
testcase_27 AC 80 ms
100,612 KB
testcase_28 AC 80 ms
100,616 KB
testcase_29 AC 80 ms
100,332 KB
testcase_30 AC 81 ms
101,532 KB
testcase_31 AC 110 ms
101,348 KB
testcase_32 AC 153 ms
119,708 KB
testcase_33 AC 122 ms
119,552 KB
testcase_34 AC 121 ms
119,700 KB
testcase_35 AC 91 ms
105,056 KB
testcase_36 AC 118 ms
109,952 KB
testcase_37 AC 117 ms
119,424 KB
testcase_38 AC 121 ms
118,276 KB
testcase_39 AC 97 ms
105,912 KB
testcase_40 AC 96 ms
106,296 KB
testcase_41 AC 151 ms
116,740 KB
testcase_42 AC 152 ms
116,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())
A = li()

C = [a for a in A if a!=0]
C.sort()

if len(C) <= 1:
    exit(print("Yes"))

n = len(C)
if any(C[i]==C[i+1] for i in range(n-1)):
    if all(C[i]==C[i+1] for i in range(n-1)):
        exit(print("Yes"))
    else:
        exit(print("No"))

g = 0
for a,b in zip(C,C[1:]):
    g = gcd(g,b-a)

if max(C)-g*(N-1) <= min(C):
    print("Yes")
else:
    print("No")


0