結果

問題 No.1884 Sequence
ユーザー とりゐとりゐ
提出日時 2022-03-25 21:24:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 812 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 118,792 KB
最終ジャッジ日時 2024-10-14 05:11:42
合計ジャッジ時間 6,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,016 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 44 ms
54,144 KB
testcase_03 AC 40 ms
54,144 KB
testcase_04 AC 40 ms
53,632 KB
testcase_05 AC 40 ms
54,016 KB
testcase_06 AC 41 ms
54,272 KB
testcase_07 AC 41 ms
54,400 KB
testcase_08 AC 40 ms
54,400 KB
testcase_09 WA -
testcase_10 AC 174 ms
118,340 KB
testcase_11 AC 168 ms
118,504 KB
testcase_12 AC 71 ms
91,520 KB
testcase_13 AC 74 ms
94,464 KB
testcase_14 AC 73 ms
91,904 KB
testcase_15 AC 119 ms
104,812 KB
testcase_16 AC 133 ms
118,268 KB
testcase_17 AC 95 ms
105,448 KB
testcase_18 AC 115 ms
106,012 KB
testcase_19 AC 96 ms
102,892 KB
testcase_20 AC 106 ms
105,728 KB
testcase_21 AC 99 ms
105,088 KB
testcase_22 AC 121 ms
104,020 KB
testcase_23 AC 141 ms
118,792 KB
testcase_24 AC 142 ms
118,776 KB
testcase_25 AC 140 ms
117,012 KB
testcase_26 AC 142 ms
118,020 KB
testcase_27 AC 75 ms
98,176 KB
testcase_28 AC 76 ms
98,560 KB
testcase_29 AC 79 ms
99,328 KB
testcase_30 AC 80 ms
98,816 KB
testcase_31 AC 100 ms
99,968 KB
testcase_32 WA -
testcase_33 AC 112 ms
118,276 KB
testcase_34 AC 113 ms
118,192 KB
testcase_35 AC 80 ms
100,992 KB
testcase_36 AC 110 ms
106,744 KB
testcase_37 AC 117 ms
118,404 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 131 ms
112,676 KB
testcase_42 AC 136 ms
112,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
from collections import deque,Counter
from sys import stdin

#sys.setrecursionlimit(10**7)

int1=lambda x: int(x)-1
stinput=lambda :stdin.readline()[:-1]
ii=lambda :int(stinput())
mi=lambda :map(int, stdin.readline().split())
li=lambda :list(mi())
mi1=lambda :map(int1, stdin.readline().split())
li1=lambda :list(mi1())
mis=lambda :map(str, stdin.readline().split())
lis=lambda :list(mis())

from collections import defaultdict
#d=defaultdict(int)
#d=defaultdict(lambda:1)

mod=10**9+7
Mod=998244353
INF=10**18
ans=0

n=ii()
a=li()
x=-1
g=0
cnt=0
c=[]
for i in a:
  if i!=0:
    c.append(i)
    if x==-1:
      x=i
    else:
      g=math.gcd(g,x-i)
  else:
    cnt+=1
if len(c)==0 or g==0:
  print('Yes')
  exit()

mx=max(c)
mn=min(c)
if (mx-mn)//g+1<=n:
  print('Yes')
else:
  print('No')
0