結果

問題 No.1884 Sequence
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-25 22:09:52
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 473 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 111,356 KB
最終ジャッジ日時 2024-10-14 06:04:08
合計ジャッジ時間 6,195 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 RE -
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 WA -
testcase_10 AC 182 ms
110,880 KB
testcase_11 AC 182 ms
110,604 KB
testcase_12 AC 66 ms
89,984 KB
testcase_13 AC 70 ms
93,696 KB
testcase_14 AC 75 ms
92,288 KB
testcase_15 AC 122 ms
109,852 KB
testcase_16 AC 145 ms
110,496 KB
testcase_17 AC 91 ms
106,880 KB
testcase_18 AC 100 ms
109,952 KB
testcase_19 AC 89 ms
105,856 KB
testcase_20 AC 118 ms
110,592 KB
testcase_21 AC 102 ms
106,240 KB
testcase_22 AC 124 ms
110,336 KB
testcase_23 AC 148 ms
110,356 KB
testcase_24 AC 144 ms
110,108 KB
testcase_25 AC 148 ms
110,024 KB
testcase_26 AC 146 ms
111,356 KB
testcase_27 RE -
testcase_28 AC 76 ms
98,048 KB
testcase_29 AC 74 ms
98,304 KB
testcase_30 AC 75 ms
97,792 KB
testcase_31 AC 105 ms
102,912 KB
testcase_32 WA -
testcase_33 AC 108 ms
107,408 KB
testcase_34 AC 108 ms
107,096 KB
testcase_35 AC 84 ms
101,248 KB
testcase_36 AC 115 ms
102,072 KB
testcase_37 AC 115 ms
109,652 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 143 ms
105,264 KB
testcase_42 AC 142 ms
104,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
n = int(input())
A = sorted(list(map(int,input().split())))
zero = 0
for i in range(n):
    if A[i] != 0:
        nA = A[i:]
        zero = i
        break

if len(nA) == 1:
    print("Yes")
    exit()

g = nA[1]-nA[0]
for a,na in zip(nA,nA[1:]):
    dif = na-a
    g = gcd(dif,g)

if g == 0:
    print("Yes" if len(set(nA)) == 1 else "No")
    exit()

for a,na in zip(nA,nA[1:]):
    dif = na-a
    zero -= dif//g-1
print("Yes" if zero >= 0 else "No")
0