結果

問題 No.1884 Sequence
ユーザー MasKoaTSMasKoaTS
提出日時 2022-03-25 21:41:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 1,064 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 136,960 KB
最終ジャッジ日時 2024-10-14 05:38:06
合計ジャッジ時間 9,884 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
86,204 KB
testcase_01 AC 124 ms
86,556 KB
testcase_02 AC 125 ms
86,400 KB
testcase_03 AC 126 ms
86,528 KB
testcase_04 AC 126 ms
86,132 KB
testcase_05 AC 126 ms
86,272 KB
testcase_06 AC 127 ms
86,400 KB
testcase_07 AC 128 ms
86,272 KB
testcase_08 AC 124 ms
86,144 KB
testcase_09 AC 124 ms
86,400 KB
testcase_10 AC 268 ms
136,832 KB
testcase_11 AC 266 ms
136,960 KB
testcase_12 AC 157 ms
109,696 KB
testcase_13 AC 163 ms
112,768 KB
testcase_14 AC 164 ms
110,336 KB
testcase_15 AC 209 ms
125,796 KB
testcase_16 AC 239 ms
136,704 KB
testcase_17 AC 187 ms
120,832 KB
testcase_18 AC 186 ms
126,976 KB
testcase_19 AC 183 ms
121,472 KB
testcase_20 AC 204 ms
123,136 KB
testcase_21 AC 192 ms
119,936 KB
testcase_22 AC 206 ms
124,416 KB
testcase_23 AC 241 ms
136,832 KB
testcase_24 AC 237 ms
136,680 KB
testcase_25 AC 236 ms
136,192 KB
testcase_26 AC 243 ms
136,904 KB
testcase_27 AC 166 ms
116,224 KB
testcase_28 AC 166 ms
116,044 KB
testcase_29 AC 167 ms
116,152 KB
testcase_30 AC 165 ms
115,968 KB
testcase_31 AC 199 ms
118,208 KB
testcase_32 AC 234 ms
136,616 KB
testcase_33 AC 194 ms
135,168 KB
testcase_34 AC 203 ms
135,168 KB
testcase_35 AC 177 ms
116,096 KB
testcase_36 AC 201 ms
128,256 KB
testcase_37 AC 200 ms
135,296 KB
testcase_38 AC 199 ms
134,396 KB
testcase_39 AC 189 ms
119,476 KB
testcase_40 AC 189 ms
120,272 KB
testcase_41 AC 228 ms
131,840 KB
testcase_42 AC 226 ms
131,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from functools import cmp_to_key
import math
import sys
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10 ** 6)
inp = sys.stdin.readline
input = lambda : inp().rstrip()
getN = lambda : int(inp())
getNs = lambda : map(int, inp().split())
getList = lambda :list(map(int, inp().split()))
getStrs = lambda n : [input() for _ in [0] * n]
def yexit(): print("Yes"); exit(0)
def nexit(): print("No"); exit(0)
pi = 3.141592653589793
mod = 1000000007
MOD = 998244353
INF = 4611686018427387903
dx = [1, 0, -1, 0];	dy = [0, 1, 0, -1]


"""
Main Code
"""

n = getN()
a = sorted(getNs())

cnt = G = 0
d = []
for i in range(n - 1):
	if(a[i] == 0):
		cnt += 1
		continue
	d.append(a[i + 1] - a[i])
	G = math.gcd(G, d[-1])

if(G == 0):
	yexit()
if(0 in d):
	if all(a[i] == a[i + 1] for i in range(n - 1)):
		yexit()
	else:
		nexit()

#print(G, d)
for i in d:
	cnt -= i // G - 1
if(cnt >= 0):
	yexit()
else:
	nexit()
0