結果

問題 No.1884 Sequence
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-03-25 21:33:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 118,648 KB
最終ジャッジ日時 2024-10-14 05:27:02
合計ジャッジ時間 6,184 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 37 ms
52,480 KB
testcase_10 AC 181 ms
117,688 KB
testcase_11 AC 181 ms
118,280 KB
testcase_12 AC 68 ms
89,728 KB
testcase_13 AC 72 ms
93,952 KB
testcase_14 AC 77 ms
92,672 KB
testcase_15 AC 123 ms
108,396 KB
testcase_16 AC 152 ms
118,220 KB
testcase_17 AC 96 ms
105,856 KB
testcase_18 AC 106 ms
108,544 KB
testcase_19 AC 100 ms
104,504 KB
testcase_20 AC 120 ms
107,360 KB
testcase_21 AC 109 ms
105,472 KB
testcase_22 AC 120 ms
107,392 KB
testcase_23 AC 159 ms
118,092 KB
testcase_24 AC 151 ms
117,836 KB
testcase_25 AC 152 ms
117,308 KB
testcase_26 AC 154 ms
118,648 KB
testcase_27 AC 77 ms
97,280 KB
testcase_28 AC 79 ms
97,300 KB
testcase_29 AC 74 ms
97,024 KB
testcase_30 AC 84 ms
97,920 KB
testcase_31 AC 113 ms
101,504 KB
testcase_32 AC 157 ms
117,392 KB
testcase_33 AC 120 ms
116,804 KB
testcase_34 AC 120 ms
116,880 KB
testcase_35 AC 90 ms
102,400 KB
testcase_36 AC 123 ms
107,076 KB
testcase_37 AC 116 ms
116,236 KB
testcase_38 AC 114 ms
114,424 KB
testcase_39 AC 99 ms
105,728 KB
testcase_40 AC 103 ms
105,984 KB
testcase_41 AC 151 ms
110,708 KB
testcase_42 AC 150 ms
110,236 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()

if ind == len(B):
    print ("Yes")
else:
    print ("No")
0