結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,868 KB
testcase_01 AC 37 ms
52,392 KB
testcase_02 AC 37 ms
52,632 KB
testcase_03 AC 37 ms
52,132 KB
testcase_04 AC 36 ms
53,132 KB
testcase_05 AC 38 ms
52,600 KB
testcase_06 WA -
testcase_07 AC 37 ms
52,768 KB
testcase_08 AC 36 ms
53,700 KB
testcase_09 WA -
testcase_10 AC 242 ms
149,688 KB
testcase_11 AC 240 ms
149,640 KB
testcase_12 AC 66 ms
89,492 KB
testcase_13 AC 71 ms
93,852 KB
testcase_14 AC 76 ms
93,208 KB
testcase_15 AC 145 ms
108,160 KB
testcase_16 AC 202 ms
149,652 KB
testcase_17 AC 102 ms
106,556 KB
testcase_18 AC 124 ms
108,572 KB
testcase_19 AC 109 ms
104,604 KB
testcase_20 AC 132 ms
107,468 KB
testcase_21 AC 116 ms
106,464 KB
testcase_22 AC 142 ms
107,604 KB
testcase_23 AC 203 ms
149,684 KB
testcase_24 AC 203 ms
149,420 KB
testcase_25 AC 210 ms
148,512 KB
testcase_26 AC 213 ms
150,200 KB
testcase_27 AC 73 ms
97,488 KB
testcase_28 AC 73 ms
98,004 KB
testcase_29 AC 74 ms
98,144 KB
testcase_30 AC 74 ms
97,472 KB
testcase_31 AC 130 ms
107,164 KB
testcase_32 AC 213 ms
178,196 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 82 ms
101,140 KB
testcase_36 AC 116 ms
106,928 KB
testcase_37 AC 117 ms
116,828 KB
testcase_38 WA -
testcase_39 AC 94 ms
105,524 KB
testcase_40 AC 95 ms
106,812 KB
testcase_41 AC 186 ms
133,828 KB
testcase_42 AC 188 ms
133,772 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_ = sa[0]
    for i in range(1,len(sa)):
        gcd_ = math.gcd(gcd_,sa[i])
    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