結果

問題 No.1884 Sequence
ユーザー tassei903tassei903
提出日時 2022-03-25 22:49:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 797 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 148,960 KB
最終ジャッジ日時 2024-10-14 06:49:46
合計ジャッジ時間 7,167 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 WA -
testcase_09 AC 39 ms
52,224 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 78 ms
92,800 KB
testcase_15 AC 171 ms
107,436 KB
testcase_16 AC 179 ms
119,448 KB
testcase_17 WA -
testcase_18 AC 120 ms
107,648 KB
testcase_19 AC 106 ms
109,824 KB
testcase_20 AC 153 ms
106,752 KB
testcase_21 AC 127 ms
108,288 KB
testcase_22 AC 162 ms
107,136 KB
testcase_23 WA -
testcase_24 AC 199 ms
119,956 KB
testcase_25 AC 202 ms
119,048 KB
testcase_26 WA -
testcase_27 AC 75 ms
96,768 KB
testcase_28 AC 77 ms
97,024 KB
testcase_29 AC 76 ms
97,408 KB
testcase_30 AC 83 ms
99,200 KB
testcase_31 AC 149 ms
107,008 KB
testcase_32 AC 239 ms
148,960 KB
testcase_33 AC 118 ms
117,724 KB
testcase_34 AC 121 ms
117,924 KB
testcase_35 AC 86 ms
102,016 KB
testcase_36 AC 122 ms
107,388 KB
testcase_37 AC 121 ms
117,932 KB
testcase_38 AC 127 ms
116,392 KB
testcase_39 AC 98 ms
107,392 KB
testcase_40 AC 97 ms
108,672 KB
testcase_41 AC 211 ms
134,184 KB
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

from math import gcd
n = ni()
c = 0
a = na()
b = []
for i in a:
    if i == 0:
        c += 1
    else:
        b.append(i)
b = sorted(b)
m = len(b)
if m<=2:
    Yes()
    exit()

z = 0
f = 1
for i in range(n-1):
    z = gcd(z, a[i+1]-a[i])
    if a[i+1]==a[i]:
        f = 0

if f^1:
    if len(set(b))==1:
        Yes()
    else:
        No()
    exit()

for i in range(n-1):
    c -= (a[i+1]-a[i])//z - 1
if c >= 0:
    Yes()
else:
    No()
0