結果

問題 No.1884 Sequence
ユーザー Yuto OhnukiYuto Ohnuki
提出日時 2022-04-01 22:28:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 844 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 81,472 KB
実行使用メモリ 135,768 KB
最終ジャッジ日時 2024-11-20 10:07:37
合計ジャッジ時間 8,347 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,996 KB
testcase_01 AC 47 ms
54,272 KB
testcase_02 AC 47 ms
55,596 KB
testcase_03 AC 46 ms
55,588 KB
testcase_04 AC 46 ms
54,644 KB
testcase_05 AC 46 ms
54,896 KB
testcase_06 AC 45 ms
54,932 KB
testcase_07 AC 46 ms
55,444 KB
testcase_08 AC 47 ms
55,272 KB
testcase_09 WA -
testcase_10 AC 176 ms
134,976 KB
testcase_11 AC 172 ms
135,508 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 82 ms
94,744 KB
testcase_15 AC 145 ms
111,888 KB
testcase_16 AC 176 ms
135,504 KB
testcase_17 AC 103 ms
104,656 KB
testcase_18 AC 133 ms
113,180 KB
testcase_19 AC 108 ms
102,332 KB
testcase_20 AC 136 ms
108,636 KB
testcase_21 AC 111 ms
104,820 KB
testcase_22 AC 139 ms
110,432 KB
testcase_23 AC 175 ms
135,108 KB
testcase_24 AC 177 ms
135,768 KB
testcase_25 AC 179 ms
134,288 KB
testcase_26 AC 178 ms
135,156 KB
testcase_27 AC 83 ms
98,580 KB
testcase_28 AC 83 ms
98,728 KB
testcase_29 AC 81 ms
98,832 KB
testcase_30 AC 82 ms
98,660 KB
testcase_31 AC 121 ms
99,032 KB
testcase_32 AC 181 ms
133,488 KB
testcase_33 AC 122 ms
119,456 KB
testcase_34 AC 120 ms
119,592 KB
testcase_35 AC 86 ms
102,152 KB
testcase_36 AC 118 ms
109,092 KB
testcase_37 AC 130 ms
119,572 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 167 ms
124,828 KB
testcase_42 AC 167 ms
123,936 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%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