結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 37 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,608 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 WA -
testcase_10 AC 184 ms
117,908 KB
testcase_11 AC 179 ms
118,024 KB
testcase_12 AC 67 ms
89,216 KB
testcase_13 AC 69 ms
92,800 KB
testcase_14 AC 71 ms
90,496 KB
testcase_15 AC 117 ms
107,392 KB
testcase_16 AC 151 ms
118,380 KB
testcase_17 AC 86 ms
107,904 KB
testcase_18 AC 96 ms
108,228 KB
testcase_19 AC 91 ms
108,928 KB
testcase_20 AC 103 ms
106,624 KB
testcase_21 AC 93 ms
105,856 KB
testcase_22 AC 113 ms
107,008 KB
testcase_23 AC 149 ms
117,932 KB
testcase_24 AC 153 ms
118,496 KB
testcase_25 AC 151 ms
117,268 KB
testcase_26 AC 150 ms
118,352 KB
testcase_27 AC 72 ms
96,896 KB
testcase_28 AC 73 ms
97,408 KB
testcase_29 AC 73 ms
97,408 KB
testcase_30 AC 75 ms
97,280 KB
testcase_31 AC 104 ms
106,368 KB
testcase_32 WA -
testcase_33 AC 114 ms
116,572 KB
testcase_34 AC 116 ms
116,308 KB
testcase_35 AC 82 ms
100,480 KB
testcase_36 AC 107 ms
106,536 KB
testcase_37 AC 118 ms
116,496 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 141 ms
110,528 KB
testcase_42 AC 141 ms
110,072 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):
        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