結果

問題 No.1884 Sequence
ユーザー Yuto OhnukiYuto Ohnuki
提出日時 2022-04-01 22:30:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 902 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 135,388 KB
最終ジャッジ日時 2024-11-20 10:11:18
合計ジャッジ時間 6,767 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,208 KB
testcase_01 AC 46 ms
55,648 KB
testcase_02 AC 46 ms
54,836 KB
testcase_03 AC 48 ms
54,384 KB
testcase_04 AC 47 ms
55,864 KB
testcase_05 AC 47 ms
55,616 KB
testcase_06 AC 47 ms
55,880 KB
testcase_07 AC 45 ms
55,844 KB
testcase_08 AC 47 ms
55,836 KB
testcase_09 AC 47 ms
54,652 KB
testcase_10 AC 175 ms
135,084 KB
testcase_11 AC 171 ms
135,108 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 81 ms
94,412 KB
testcase_15 AC 146 ms
112,404 KB
testcase_16 AC 178 ms
135,388 KB
testcase_17 AC 101 ms
104,688 KB
testcase_18 AC 128 ms
113,700 KB
testcase_19 AC 107 ms
102,572 KB
testcase_20 AC 134 ms
108,376 KB
testcase_21 AC 108 ms
104,884 KB
testcase_22 AC 138 ms
110,304 KB
testcase_23 AC 178 ms
135,124 KB
testcase_24 AC 177 ms
135,128 KB
testcase_25 AC 176 ms
134,132 KB
testcase_26 AC 178 ms
135,024 KB
testcase_27 AC 83 ms
99,684 KB
testcase_28 AC 84 ms
98,484 KB
testcase_29 AC 84 ms
98,352 KB
testcase_30 AC 83 ms
99,060 KB
testcase_31 AC 122 ms
99,136 KB
testcase_32 AC 180 ms
133,836 KB
testcase_33 AC 121 ms
119,424 KB
testcase_34 AC 122 ms
119,560 KB
testcase_35 AC 88 ms
102,076 KB
testcase_36 AC 118 ms
109,220 KB
testcase_37 AC 123 ms
119,824 KB
testcase_38 AC 123 ms
119,272 KB
testcase_39 AC 97 ms
104,316 KB
testcase_40 AC 99 ms
104,612 KB
testcase_41 AC 168 ms
124,692 KB
testcase_42 AC 163 ms
124,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import heapq, math, itertools
from collections import defaultdict, deque
from bisect import bisect_left, bisect_right, insort_left, insort_right
inputs = sys.stdin.readline
mod = 10**9+7
inf = float('inf')
#sys.setrecursionlimit(10**7)

def main():
  n = int(input())
  a = list(map(int, inputs().split()))
  cnt, x = 0, []
  for aa in a:
    if aa==0:
      cnt += 1
    else:
      x.append(aa)
  x = sorted(x)
  y = []
  for i in range(1, len(x)):
    if x[i]-x[i-1]!=0:
      y.append(x[i]-x[i-1])
  if not y:
    print("Yes")
  else:
    d = min(y)
    flg = True
    num = 0
    for i in range(1, len(x)):
      dif = x[i]-x[i-1]
      if dif==0:
        if d!=0:
          flg = False
      elif dif%d!=0:
        flg = False
      else:
        num += max((dif//d)-1,0)
        if num>cnt:
          flg = False
    print('Yes' if flg else 'No')


if __name__ == '__main__':
  main()
0