結果

問題 No.1884 Sequence
ユーザー H20H20
提出日時 2022-03-25 21:43:26
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 511 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 182,260 KB
最終ジャッジ日時 2024-10-14 05:39:26
合計ジャッジ時間 7,856 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 41 ms
53,888 KB
testcase_03 RE -
testcase_04 AC 41 ms
54,016 KB
testcase_05 AC 41 ms
54,016 KB
testcase_06 AC 42 ms
53,888 KB
testcase_07 AC 41 ms
53,504 KB
testcase_08 AC 42 ms
53,504 KB
testcase_09 AC 41 ms
53,888 KB
testcase_10 AC 275 ms
182,000 KB
testcase_11 AC 272 ms
182,076 KB
testcase_12 AC 87 ms
97,920 KB
testcase_13 AC 93 ms
100,736 KB
testcase_14 AC 98 ms
98,432 KB
testcase_15 AC 190 ms
134,308 KB
testcase_16 AC 268 ms
181,960 KB
testcase_17 AC 134 ms
106,240 KB
testcase_18 AC 166 ms
138,532 KB
testcase_19 AC 143 ms
109,260 KB
testcase_20 AC 170 ms
106,496 KB
testcase_21 AC 139 ms
105,600 KB
testcase_22 AC 178 ms
130,392 KB
testcase_23 AC 264 ms
181,960 KB
testcase_24 AC 254 ms
182,092 KB
testcase_25 AC 236 ms
181,412 KB
testcase_26 AC 246 ms
182,260 KB
testcase_27 RE -
testcase_28 AC 85 ms
102,272 KB
testcase_29 AC 84 ms
102,400 KB
testcase_30 AC 96 ms
104,320 KB
testcase_31 AC 147 ms
109,088 KB
testcase_32 AC 241 ms
180,976 KB
testcase_33 AC 123 ms
118,520 KB
testcase_34 AC 125 ms
118,136 KB
testcase_35 AC 92 ms
104,724 KB
testcase_36 AC 129 ms
107,000 KB
testcase_37 AC 126 ms
118,364 KB
testcase_38 AC 126 ms
116,392 KB
testcase_39 AC 95 ms
105,600 KB
testcase_40 AC 97 ms
105,856 KB
testcase_41 AC 223 ms
160,308 KB
testcase_42 AC 242 ms
160,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import math


N = int(input())
A = list(map(int, input().split())) 
CA = collections.Counter(A)
B = []
for a in A:
    if a!=0:
        B.append(a)
B.sort()

CB= collections.Counter(B)
if len(CB)==1:
    print('Yes')
    exit()
temp = 0
for i in range(len(B)-1):
    if B[i+1]-B[i]==0:
        print('No')
        exit()
    temp = math.gcd(temp,B[i+1]-B[i])
v = B[0]
while CA[0]>=0 and v<B[-1]:
    if CA[v]==0:
        CA[0]-=1
    v+=temp
if CA[0]<0:
    print('No')
else:
    print('Yes')
0