結果

問題 No.1884 Sequence
ユーザー titan23titan23
提出日時 2022-06-14 13:34:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 168,960 KB
最終ジャッジ日時 2024-10-02 08:37:01
合計ジャッジ時間 7,010 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,792 KB
testcase_01 AC 43 ms
55,304 KB
testcase_02 AC 42 ms
54,368 KB
testcase_03 AC 42 ms
53,996 KB
testcase_04 AC 42 ms
55,672 KB
testcase_05 AC 43 ms
54,476 KB
testcase_06 AC 43 ms
55,708 KB
testcase_07 AC 43 ms
54,252 KB
testcase_08 AC 43 ms
54,040 KB
testcase_09 AC 43 ms
54,460 KB
testcase_10 AC 224 ms
150,588 KB
testcase_11 AC 212 ms
150,680 KB
testcase_12 AC 70 ms
91,032 KB
testcase_13 AC 75 ms
95,216 KB
testcase_14 AC 79 ms
93,740 KB
testcase_15 AC 144 ms
114,412 KB
testcase_16 AC 179 ms
138,356 KB
testcase_17 AC 100 ms
106,752 KB
testcase_18 AC 125 ms
116,424 KB
testcase_19 AC 105 ms
105,140 KB
testcase_20 AC 128 ms
106,504 KB
testcase_21 AC 112 ms
106,396 KB
testcase_22 AC 142 ms
112,464 KB
testcase_23 AC 183 ms
138,340 KB
testcase_24 AC 180 ms
138,008 KB
testcase_25 AC 179 ms
137,984 KB
testcase_26 AC 184 ms
138,744 KB
testcase_27 AC 79 ms
98,852 KB
testcase_28 AC 81 ms
99,608 KB
testcase_29 AC 80 ms
98,640 KB
testcase_30 AC 80 ms
98,620 KB
testcase_31 AC 134 ms
103,528 KB
testcase_32 AC 220 ms
168,960 KB
testcase_33 AC 114 ms
106,588 KB
testcase_34 AC 117 ms
106,272 KB
testcase_35 AC 93 ms
102,256 KB
testcase_36 AC 124 ms
100,428 KB
testcase_37 AC 117 ms
106,660 KB
testcase_38 AC 116 ms
105,392 KB
testcase_39 AC 101 ms
106,300 KB
testcase_40 AC 104 ms
106,712 KB
testcase_41 AC 169 ms
127,824 KB
testcase_42 AC 171 ms
127,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 中央ぞろえ

import sys
from collections import Counter
from math import gcd
input = lambda: sys.stdin.readline().rstrip()
inf = float('inf')

###############

n = int(input())
A = list(map(int, input().split()))
A.sort()
zero_cnt = 0
for i in range(n):
  if A[i] == 0:
    zero_cnt += 1
  else:
    break
C = A[zero_cnt:]
m = len(C)
if m <= 1:
  print('Yes')
  exit()
st = set()
for i in range(m-1):
  st.add(C[i+1] - C[i])
delta = 0
for i in st:
  delta = gcd(delta, i)

if len(C) > len(set(C)):
  if len(Counter(C)) >= 2:
    print('No')
  else:
    print('Yes')
  exit()
need = 0
for i in range(m-1):
  if (C[i+1] - C[i]) % delta != 0:
    print('No')
    exit()
  need += (C[i+1] - C[i]) // delta - 1
print('Yes' if need <= zero_cnt else 'No')
0