結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,644 KB
testcase_01 AC 39 ms
53,360 KB
testcase_02 AC 41 ms
52,744 KB
testcase_03 AC 38 ms
53,688 KB
testcase_04 AC 38 ms
52,992 KB
testcase_05 AC 38 ms
52,492 KB
testcase_06 AC 38 ms
52,856 KB
testcase_07 AC 38 ms
53,060 KB
testcase_08 AC 38 ms
53,136 KB
testcase_09 WA -
testcase_10 AC 241 ms
149,792 KB
testcase_11 AC 228 ms
150,208 KB
testcase_12 AC 67 ms
90,612 KB
testcase_13 AC 70 ms
92,648 KB
testcase_14 AC 78 ms
93,640 KB
testcase_15 AC 139 ms
108,320 KB
testcase_16 AC 188 ms
149,696 KB
testcase_17 AC 104 ms
106,436 KB
testcase_18 AC 118 ms
108,384 KB
testcase_19 AC 107 ms
104,556 KB
testcase_20 AC 130 ms
107,612 KB
testcase_21 AC 114 ms
106,316 KB
testcase_22 AC 134 ms
107,252 KB
testcase_23 AC 192 ms
150,048 KB
testcase_24 AC 186 ms
149,336 KB
testcase_25 AC 187 ms
148,748 KB
testcase_26 AC 197 ms
150,068 KB
testcase_27 AC 73 ms
96,796 KB
testcase_28 AC 74 ms
97,556 KB
testcase_29 AC 74 ms
96,700 KB
testcase_30 AC 75 ms
97,268 KB
testcase_31 AC 135 ms
107,288 KB
testcase_32 AC 220 ms
178,308 KB
testcase_33 AC 117 ms
116,460 KB
testcase_34 AC 118 ms
116,316 KB
testcase_35 AC 86 ms
101,200 KB
testcase_36 AC 119 ms
106,888 KB
testcase_37 AC 119 ms
116,448 KB
testcase_38 WA -
testcase_39 AC 94 ms
105,484 KB
testcase_40 AC 97 ms
106,868 KB
testcase_41 AC 177 ms
133,952 KB
testcase_42 AC 181 ms
132,984 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