結果

問題 No.1884 Sequence
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-03-25 21:49:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 700 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 178,208 KB
最終ジャッジ日時 2024-10-14 05:45:59
合計ジャッジ時間 6,816 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 WA -
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 40 ms
52,608 KB
testcase_09 WA -
testcase_10 AC 231 ms
149,840 KB
testcase_11 AC 236 ms
149,584 KB
testcase_12 AC 69 ms
88,832 KB
testcase_13 AC 72 ms
92,672 KB
testcase_14 AC 78 ms
92,928 KB
testcase_15 AC 141 ms
108,416 KB
testcase_16 AC 194 ms
149,476 KB
testcase_17 AC 101 ms
106,624 KB
testcase_18 AC 118 ms
108,544 KB
testcase_19 AC 107 ms
104,576 KB
testcase_20 AC 130 ms
107,008 KB
testcase_21 AC 113 ms
106,240 KB
testcase_22 AC 133 ms
107,648 KB
testcase_23 AC 193 ms
149,460 KB
testcase_24 AC 189 ms
149,468 KB
testcase_25 AC 192 ms
148,708 KB
testcase_26 AC 198 ms
150,144 KB
testcase_27 AC 74 ms
96,384 KB
testcase_28 AC 75 ms
96,768 KB
testcase_29 AC 75 ms
96,896 KB
testcase_30 AC 77 ms
96,384 KB
testcase_31 AC 137 ms
107,360 KB
testcase_32 AC 225 ms
178,208 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 88 ms
100,324 KB
testcase_36 AC 121 ms
107,320 KB
testcase_37 AC 118 ms
116,636 KB
testcase_38 WA -
testcase_39 AC 94 ms
104,832 KB
testcase_40 AC 97 ms
107,136 KB
testcase_41 AC 177 ms
133,488 KB
testcase_42 AC 181 ms
133,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
a.sort()
cnt = 0
idx = -1
sa = [0]
same = set()
flg = False
for i in range(n):
    if idx ==-1 and a[i] != 0:
        idx = i
        same.add(a[i])
    elif idx != -1:
        if a[i] in same:
            flg = True
        sa.append(a[i]-a[idx])
        same.add(a[i])
    else:
        cnt += 1
if flg:
    if len(set(a)) == 2:
        print("Yes")
    else:
        print("No")
else:
    import math
    gcd_ = 0
    for i in range(1,len(sa)):
        gcd_ = math.gcd(gcd_,sa[i]-sa[i-1])
    baf = 0 
    for i in range(1,len(sa)):
        baf += (sa[i] - sa[i-1])//gcd_ - 1
    if baf <= cnt:
        print("Yes")
    else:
        print("No")
0