結果

問題 No.1884 Sequence
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-03-25 22:45:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 834 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 178,444 KB
最終ジャッジ日時 2024-10-14 06:43:53
合計ジャッジ時間 6,509 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,900 KB
testcase_01 AC 37 ms
52,524 KB
testcase_02 AC 37 ms
52,680 KB
testcase_03 AC 38 ms
53,500 KB
testcase_04 AC 37 ms
53,756 KB
testcase_05 AC 38 ms
52,316 KB
testcase_06 AC 38 ms
52,884 KB
testcase_07 AC 36 ms
52,948 KB
testcase_08 AC 36 ms
53,068 KB
testcase_09 AC 37 ms
52,160 KB
testcase_10 AC 227 ms
149,652 KB
testcase_11 AC 222 ms
149,920 KB
testcase_12 AC 66 ms
88,948 KB
testcase_13 AC 70 ms
93,312 KB
testcase_14 AC 77 ms
93,312 KB
testcase_15 AC 138 ms
108,216 KB
testcase_16 AC 187 ms
149,552 KB
testcase_17 AC 101 ms
106,324 KB
testcase_18 AC 118 ms
108,224 KB
testcase_19 AC 107 ms
104,488 KB
testcase_20 AC 128 ms
107,252 KB
testcase_21 AC 114 ms
106,224 KB
testcase_22 AC 133 ms
107,192 KB
testcase_23 AC 188 ms
149,280 KB
testcase_24 AC 190 ms
149,516 KB
testcase_25 AC 189 ms
148,420 KB
testcase_26 AC 195 ms
150,348 KB
testcase_27 AC 74 ms
97,760 KB
testcase_28 AC 74 ms
97,836 KB
testcase_29 AC 74 ms
97,480 KB
testcase_30 AC 75 ms
98,640 KB
testcase_31 AC 131 ms
107,320 KB
testcase_32 AC 217 ms
178,444 KB
testcase_33 AC 116 ms
116,680 KB
testcase_34 AC 117 ms
116,448 KB
testcase_35 AC 86 ms
101,528 KB
testcase_36 AC 119 ms
106,968 KB
testcase_37 AC 117 ms
116,552 KB
testcase_38 AC 117 ms
114,592 KB
testcase_39 AC 94 ms
105,072 KB
testcase_40 AC 98 ms
106,932 KB
testcase_41 AC 182 ms
133,716 KB
testcase_42 AC 179 ms
133,728 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 cnt != 0:
        if len(set(a)) <= 2:
            print("Yes")
        else:
            print("No")
    else:
        if len(set(a))== 1:
            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