結果

問題 No.1884 Sequence
ユーザー MasKoaTSMasKoaTS
提出日時 2022-03-25 21:33:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 976 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 137,344 KB
最終ジャッジ日時 2024-10-14 05:26:24
合計ジャッジ時間 10,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
86,328 KB
testcase_01 AC 128 ms
86,656 KB
testcase_02 AC 125 ms
86,784 KB
testcase_03 AC 128 ms
86,656 KB
testcase_04 AC 127 ms
86,784 KB
testcase_05 AC 133 ms
86,784 KB
testcase_06 AC 128 ms
86,784 KB
testcase_07 AC 127 ms
86,400 KB
testcase_08 AC 127 ms
86,896 KB
testcase_09 WA -
testcase_10 AC 279 ms
136,832 KB
testcase_11 AC 277 ms
137,216 KB
testcase_12 AC 164 ms
110,208 KB
testcase_13 AC 168 ms
112,768 KB
testcase_14 AC 179 ms
110,288 KB
testcase_15 AC 214 ms
126,080 KB
testcase_16 AC 237 ms
136,960 KB
testcase_17 AC 180 ms
121,600 KB
testcase_18 AC 189 ms
127,428 KB
testcase_19 AC 181 ms
121,472 KB
testcase_20 AC 205 ms
123,700 KB
testcase_21 AC 194 ms
120,320 KB
testcase_22 AC 211 ms
124,472 KB
testcase_23 AC 236 ms
136,832 KB
testcase_24 AC 242 ms
136,516 KB
testcase_25 AC 240 ms
136,320 KB
testcase_26 AC 244 ms
137,344 KB
testcase_27 AC 168 ms
116,428 KB
testcase_28 AC 170 ms
116,432 KB
testcase_29 AC 172 ms
116,352 KB
testcase_30 AC 168 ms
116,096 KB
testcase_31 AC 201 ms
118,016 KB
testcase_32 WA -
testcase_33 AC 202 ms
135,552 KB
testcase_34 AC 199 ms
135,552 KB
testcase_35 AC 176 ms
116,352 KB
testcase_36 AC 199 ms
128,640 KB
testcase_37 AC 205 ms
135,296 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 228 ms
132,400 KB
testcase_42 AC 233 ms
131,840 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()

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