結果

問題 No.1884 Sequence
ユーザー hir355hir355
提出日時 2022-03-25 21:27:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 118,636 KB
最終ジャッジ日時 2024-10-14 05:16:47
合計ジャッジ時間 5,848 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 WA -
testcase_10 AC 181 ms
118,148 KB
testcase_11 AC 179 ms
118,068 KB
testcase_12 AC 67 ms
89,216 KB
testcase_13 AC 69 ms
92,544 KB
testcase_14 AC 70 ms
90,880 KB
testcase_15 AC 115 ms
107,648 KB
testcase_16 AC 148 ms
118,236 KB
testcase_17 AC 86 ms
108,388 KB
testcase_18 AC 95 ms
107,740 KB
testcase_19 AC 91 ms
108,928 KB
testcase_20 AC 106 ms
106,908 KB
testcase_21 AC 92 ms
106,496 KB
testcase_22 AC 112 ms
107,056 KB
testcase_23 AC 148 ms
118,408 KB
testcase_24 AC 151 ms
118,596 KB
testcase_25 AC 149 ms
117,244 KB
testcase_26 AC 150 ms
118,636 KB
testcase_27 AC 72 ms
96,640 KB
testcase_28 AC 71 ms
96,768 KB
testcase_29 AC 73 ms
97,408 KB
testcase_30 AC 74 ms
97,152 KB
testcase_31 AC 108 ms
106,356 KB
testcase_32 WA -
testcase_33 AC 112 ms
116,216 KB
testcase_34 AC 113 ms
116,424 KB
testcase_35 AC 78 ms
100,224 KB
testcase_36 AC 109 ms
106,308 KB
testcase_37 AC 119 ms
116,420 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 85 ms
105,856 KB
testcase_41 AC 137 ms
110,600 KB
testcase_42 AC 137 ms
110,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
n = int(input())
a = list(map(int, input().split()))
b = []
cnt = 0
for x in a:
    if x == 0:
        cnt += 1
    else:
        b.append(x)
b.sort()
if len(b) <= 1:
    print('Yes')
else:
    g = b[1] - b[0]
    for i in range(len(b) - 1):
        if b[i + 1] - b[i] == 0:
            g = 0
        else:
            g = gcd(g, b[i + 1] - b[i])
    if g == 0:
        if b[-1] - b[0] == 0:
            print('Yes')
        else:
            print('No')
    elif (b[-1] - b[0]) // g + 1 - len(b) <= cnt:
        print('Yes')
    else:
        print('No')
0