結果

問題 No.1884 Sequence
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-03-25 21:30:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 708 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 118,612 KB
最終ジャッジ日時 2024-10-14 05:21:32
合計ジャッジ時間 6,189 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,628 KB
testcase_01 AC 38 ms
53,676 KB
testcase_02 AC 35 ms
53,488 KB
testcase_03 AC 37 ms
52,588 KB
testcase_04 AC 37 ms
53,004 KB
testcase_05 AC 37 ms
52,620 KB
testcase_06 AC 38 ms
54,128 KB
testcase_07 AC 37 ms
52,848 KB
testcase_08 AC 37 ms
53,668 KB
testcase_09 AC 37 ms
53,536 KB
testcase_10 AC 183 ms
118,044 KB
testcase_11 AC 182 ms
118,308 KB
testcase_12 AC 68 ms
89,968 KB
testcase_13 AC 71 ms
93,932 KB
testcase_14 AC 77 ms
92,896 KB
testcase_15 AC 123 ms
108,320 KB
testcase_16 AC 149 ms
118,544 KB
testcase_17 AC 94 ms
106,512 KB
testcase_18 AC 104 ms
108,408 KB
testcase_19 AC 98 ms
104,712 KB
testcase_20 AC 117 ms
107,348 KB
testcase_21 AC 107 ms
106,192 KB
testcase_22 AC 120 ms
107,392 KB
testcase_23 AC 150 ms
118,180 KB
testcase_24 AC 151 ms
118,316 KB
testcase_25 AC 149 ms
117,120 KB
testcase_26 AC 151 ms
118,612 KB
testcase_27 AC 74 ms
97,836 KB
testcase_28 AC 75 ms
98,192 KB
testcase_29 AC 75 ms
98,792 KB
testcase_30 AC 78 ms
99,588 KB
testcase_31 AC 112 ms
101,908 KB
testcase_32 AC 155 ms
117,724 KB
testcase_33 AC 115 ms
116,588 KB
testcase_34 AC 116 ms
116,680 KB
testcase_35 AC 86 ms
102,724 KB
testcase_36 AC 121 ms
107,508 KB
testcase_37 AC 114 ms
116,592 KB
testcase_38 AC 116 ms
114,740 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 148 ms
110,472 KB
testcase_42 AC 150 ms
110,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from sys import stdin
import math

N = int(input())

A = list(map(int,input().split()))
A.sort()

d = None
z = 0
B = []

for i in range(N-1):

    if A[i] != 0:
        diff = A[i+1] - A[i]
        if d == None:
            d = diff
        else:
            d = math.gcd(d,diff)

    else:
        z += 1

for i in range(N):
    if A[i] != 0:
        B.append(A[i])

if len(B) == 0:
    print ("Yes")
    sys.exit()

if d == 0:
    if max(B) == min(B):
        print ("Yes")
    else:
        print ("No")
    sys.exit()

ind = 0
for i in range(B[0],B[-1]+1,d):

    if B[ind] == i:
        ind += 1
    else:
        z -= 1

    if z < 0:
        print ("No")
        sys.exit()

print ("Yes")
0