結果

問題 No.1884 Sequence
ユーザー titan23titan23
提出日時 2022-06-14 13:31:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 744 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 119,144 KB
最終ジャッジ日時 2024-10-02 08:30:49
合計ジャッジ時間 7,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,744 KB
testcase_01 AC 40 ms
54,812 KB
testcase_02 AC 41 ms
54,456 KB
testcase_03 AC 40 ms
54,304 KB
testcase_04 AC 41 ms
54,836 KB
testcase_05 AC 41 ms
54,496 KB
testcase_06 AC 41 ms
54,116 KB
testcase_07 AC 41 ms
54,708 KB
testcase_08 AC 41 ms
54,476 KB
testcase_09 WA -
testcase_10 AC 181 ms
118,372 KB
testcase_11 AC 177 ms
119,144 KB
testcase_12 AC 70 ms
90,736 KB
testcase_13 AC 73 ms
95,476 KB
testcase_14 AC 76 ms
92,984 KB
testcase_15 AC 128 ms
101,224 KB
testcase_16 AC 149 ms
107,376 KB
testcase_17 AC 94 ms
107,344 KB
testcase_18 AC 107 ms
100,668 KB
testcase_19 AC 93 ms
105,572 KB
testcase_20 AC 115 ms
106,888 KB
testcase_21 AC 105 ms
106,864 KB
testcase_22 AC 125 ms
100,720 KB
testcase_23 AC 147 ms
107,112 KB
testcase_24 AC 149 ms
107,320 KB
testcase_25 AC 147 ms
106,544 KB
testcase_26 AC 149 ms
107,412 KB
testcase_27 AC 75 ms
98,744 KB
testcase_28 AC 76 ms
99,848 KB
testcase_29 AC 76 ms
99,972 KB
testcase_30 AC 76 ms
99,888 KB
testcase_31 AC 110 ms
102,784 KB
testcase_32 WA -
testcase_33 AC 112 ms
106,688 KB
testcase_34 AC 113 ms
106,544 KB
testcase_35 AC 86 ms
101,848 KB
testcase_36 AC 116 ms
100,816 KB
testcase_37 AC 113 ms
106,280 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 141 ms
105,308 KB
testcase_42 AC 142 ms
104,656 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 delta == 0:
  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