結果

問題 No.1884 Sequence
ユーザー tassei903tassei903
提出日時 2022-03-25 22:52:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 812 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 149,524 KB
最終ジャッジ日時 2024-10-14 06:54:35
合計ジャッジ時間 6,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,920 KB
testcase_01 AC 38 ms
52,884 KB
testcase_02 AC 37 ms
53,080 KB
testcase_03 AC 37 ms
52,996 KB
testcase_04 AC 37 ms
53,928 KB
testcase_05 AC 38 ms
52,660 KB
testcase_06 AC 39 ms
52,600 KB
testcase_07 AC 38 ms
52,960 KB
testcase_08 AC 37 ms
52,868 KB
testcase_09 AC 38 ms
53,796 KB
testcase_10 AC 193 ms
119,896 KB
testcase_11 AC 190 ms
119,752 KB
testcase_12 AC 69 ms
89,848 KB
testcase_13 AC 71 ms
93,120 KB
testcase_14 AC 72 ms
91,968 KB
testcase_15 AC 120 ms
107,504 KB
testcase_16 AC 158 ms
119,536 KB
testcase_17 AC 96 ms
110,008 KB
testcase_18 AC 102 ms
107,868 KB
testcase_19 AC 96 ms
109,720 KB
testcase_20 AC 111 ms
107,224 KB
testcase_21 AC 105 ms
108,884 KB
testcase_22 AC 116 ms
106,928 KB
testcase_23 AC 159 ms
119,508 KB
testcase_24 AC 160 ms
120,140 KB
testcase_25 AC 162 ms
119,008 KB
testcase_26 AC 160 ms
119,572 KB
testcase_27 AC 74 ms
97,648 KB
testcase_28 AC 75 ms
98,648 KB
testcase_29 AC 74 ms
98,220 KB
testcase_30 AC 74 ms
98,216 KB
testcase_31 AC 118 ms
107,508 KB
testcase_32 AC 185 ms
149,524 KB
testcase_33 AC 118 ms
118,048 KB
testcase_34 AC 119 ms
118,036 KB
testcase_35 AC 79 ms
101,672 KB
testcase_36 AC 116 ms
107,664 KB
testcase_37 AC 119 ms
118,132 KB
testcase_38 AC 118 ms
116,380 KB
testcase_39 AC 85 ms
105,580 KB
testcase_40 AC 89 ms
107,204 KB
testcase_41 AC 145 ms
111,772 KB
testcase_42 AC 149 ms
111,860 KB
権限があれば一括ダウンロードができます

ソースコード

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(m-1):
    z = gcd(z, b[i+1]-b[i])
    if b[i+1]==b[i]:
        f = 0

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

for i in range(m-1):
    c -= (b[i+1]-b[i])//z - 1
    #print(c)
if c >= 0:
    Yes()
else:
    No()
0