結果

問題 No.1884 Sequence
ユーザー puznekopuzneko
提出日時 2022-04-05 23:21:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 136,756 KB
最終ジャッジ日時 2024-11-27 08:18:19
合計ジャッジ時間 7,357 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,696 KB
testcase_01 AC 37 ms
52,380 KB
testcase_02 AC 37 ms
53,816 KB
testcase_03 AC 36 ms
52,660 KB
testcase_04 AC 37 ms
52,736 KB
testcase_05 AC 36 ms
52,088 KB
testcase_06 AC 37 ms
52,832 KB
testcase_07 AC 38 ms
53,576 KB
testcase_08 AC 38 ms
52,568 KB
testcase_09 AC 36 ms
53,156 KB
testcase_10 AC 185 ms
136,300 KB
testcase_11 AC 180 ms
136,636 KB
testcase_12 AC 70 ms
94,724 KB
testcase_13 AC 74 ms
98,796 KB
testcase_14 AC 77 ms
97,736 KB
testcase_15 AC 126 ms
122,108 KB
testcase_16 AC 150 ms
136,756 KB
testcase_17 AC 94 ms
115,048 KB
testcase_18 AC 107 ms
123,416 KB
testcase_19 AC 93 ms
113,072 KB
testcase_20 AC 116 ms
119,248 KB
testcase_21 AC 102 ms
113,168 KB
testcase_22 AC 123 ms
120,816 KB
testcase_23 AC 152 ms
136,644 KB
testcase_24 AC 150 ms
136,712 KB
testcase_25 AC 152 ms
135,568 KB
testcase_26 AC 151 ms
136,588 KB
testcase_27 AC 80 ms
103,496 KB
testcase_28 AC 79 ms
103,496 KB
testcase_29 AC 79 ms
104,228 KB
testcase_30 AC 79 ms
105,040 KB
testcase_31 AC 106 ms
111,688 KB
testcase_32 AC 150 ms
135,572 KB
testcase_33 AC 107 ms
133,304 KB
testcase_34 AC 108 ms
133,492 KB
testcase_35 AC 85 ms
107,788 KB
testcase_36 AC 104 ms
124,112 KB
testcase_37 AC 109 ms
133,528 KB
testcase_38 AC 106 ms
131,756 KB
testcase_39 AC 89 ms
110,968 KB
testcase_40 AC 90 ms
112,380 KB
testcase_41 AC 141 ms
130,256 KB
testcase_42 AC 139 ms
129,912 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