結果

問題 No.1884 Sequence
ユーザー 👑 rin204rin204
提出日時 2022-03-25 21:24:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 454 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 182,232 KB
最終ジャッジ日時 2024-10-14 05:12:47
合計ジャッジ時間 7,094 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 39 ms
51,584 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 276 ms
182,152 KB
testcase_11 AC 268 ms
182,020 KB
testcase_12 AC 66 ms
89,088 KB
testcase_13 AC 71 ms
92,288 KB
testcase_14 AC 73 ms
92,032 KB
testcase_15 AC 149 ms
114,088 KB
testcase_16 AC 218 ms
181,828 KB
testcase_17 AC 107 ms
109,568 KB
testcase_18 AC 135 ms
117,732 KB
testcase_19 AC 117 ms
108,672 KB
testcase_20 AC 135 ms
106,880 KB
testcase_21 AC 115 ms
115,072 KB
testcase_22 AC 148 ms
109,520 KB
testcase_23 AC 221 ms
182,032 KB
testcase_24 AC 220 ms
182,232 KB
testcase_25 AC 225 ms
181,388 KB
testcase_26 AC 227 ms
181,984 KB
testcase_27 AC 72 ms
96,512 KB
testcase_28 AC 72 ms
96,896 KB
testcase_29 AC 73 ms
97,280 KB
testcase_30 AC 74 ms
97,280 KB
testcase_31 AC 130 ms
106,624 KB
testcase_32 AC 225 ms
180,396 KB
testcase_33 AC 112 ms
116,000 KB
testcase_34 AC 111 ms
116,312 KB
testcase_35 AC 75 ms
99,200 KB
testcase_36 AC 107 ms
106,040 KB
testcase_37 AC 136 ms
117,844 KB
testcase_38 AC 122 ms
116,516 KB
testcase_39 AC 85 ms
105,332 KB
testcase_40 AC 98 ms
106,880 KB
testcase_41 AC 199 ms
157,356 KB
testcase_42 AC 199 ms
156,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

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

B = []
zero = 0
for a in A:
    if a != 0:
        B.append(a)
    else:
        zero += 1
if zero >= n - 1:
    print("Yes")
    exit()
if len(set(B)) == 1:
    print("Yes")
    exit()
B.sort()
b0 = B[0]
g = 0
for i, b in enumerate(B):
    B[i] -= b0
    g = gcd(g, b - b0)

B = [b // g for b in B]
if len(set(B)) == len(B) and B[-1] < n:
    print("Yes")
else:
    print("No")
0