結果

問題 No.1884 Sequence
ユーザー puznekopuzneko
提出日時 2022-04-05 23:21:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 136,672 KB
最終ジャッジ日時 2024-05-05 11:36:14
合計ジャッジ時間 6,997 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,224 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 32 ms
51,712 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 33 ms
51,712 KB
testcase_07 AC 32 ms
52,096 KB
testcase_08 AC 33 ms
52,224 KB
testcase_09 AC 32 ms
52,224 KB
testcase_10 AC 169 ms
136,552 KB
testcase_11 AC 168 ms
136,624 KB
testcase_12 AC 65 ms
94,464 KB
testcase_13 AC 67 ms
98,432 KB
testcase_14 AC 70 ms
96,640 KB
testcase_15 AC 116 ms
122,368 KB
testcase_16 AC 140 ms
136,672 KB
testcase_17 AC 86 ms
115,200 KB
testcase_18 AC 98 ms
123,520 KB
testcase_19 AC 86 ms
113,408 KB
testcase_20 AC 109 ms
119,040 KB
testcase_21 AC 96 ms
113,280 KB
testcase_22 AC 111 ms
120,576 KB
testcase_23 AC 143 ms
136,576 KB
testcase_24 AC 142 ms
136,448 KB
testcase_25 AC 137 ms
135,808 KB
testcase_26 AC 145 ms
136,452 KB
testcase_27 AC 73 ms
103,808 KB
testcase_28 AC 73 ms
103,296 KB
testcase_29 AC 72 ms
103,680 KB
testcase_30 AC 74 ms
103,296 KB
testcase_31 AC 97 ms
110,080 KB
testcase_32 AC 137 ms
135,424 KB
testcase_33 AC 102 ms
133,120 KB
testcase_34 AC 99 ms
133,248 KB
testcase_35 AC 82 ms
107,008 KB
testcase_36 AC 95 ms
123,560 KB
testcase_37 AC 99 ms
133,760 KB
testcase_38 AC 100 ms
132,096 KB
testcase_39 AC 82 ms
110,720 KB
testcase_40 AC 86 ms
112,304 KB
testcase_41 AC 126 ms
130,048 KB
testcase_42 AC 129 ms
129,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from sys import stdin
n, *a = map(int, stdin.read().split())
b = []
for i in range(n):
    if a[i] != 0:
        b.append(a[i])

m = len(b)
if m <= 2:
    print("Yes")
    exit()

b.sort()
c = [b[i+1]-b[i] for i in range(m-1)]
bgcd = c[0]
for i in range(m-1):
    if c[i] == 0:
        bgcd = 0
        break
    bgcd = math.gcd(bgcd,c[i])

if bgcd == 0:
    if max(b) != min(b):
        print("No")
    else:
        print("Yes")
else:
    if (max(b) - min(b)) >= bgcd * n:
        print("No")
    else:
        print("Yes")
0