結果

問題 No.1884 Sequence
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-27 09:33:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 118,784 KB
最終ジャッジ日時 2024-11-06 04:41:36
合計ジャッジ時間 6,218 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,984 KB
testcase_01 AC 38 ms
53,692 KB
testcase_02 AC 38 ms
52,592 KB
testcase_03 AC 38 ms
53,204 KB
testcase_04 AC 38 ms
54,012 KB
testcase_05 AC 37 ms
53,128 KB
testcase_06 AC 37 ms
53,680 KB
testcase_07 AC 38 ms
53,248 KB
testcase_08 AC 38 ms
54,004 KB
testcase_09 WA -
testcase_10 AC 190 ms
118,504 KB
testcase_11 AC 189 ms
118,748 KB
testcase_12 AC 67 ms
89,652 KB
testcase_13 AC 70 ms
92,732 KB
testcase_14 AC 74 ms
91,952 KB
testcase_15 AC 124 ms
108,444 KB
testcase_16 AC 156 ms
118,380 KB
testcase_17 AC 94 ms
109,864 KB
testcase_18 AC 100 ms
108,700 KB
testcase_19 AC 96 ms
109,928 KB
testcase_20 AC 116 ms
107,004 KB
testcase_21 AC 109 ms
108,552 KB
testcase_22 AC 119 ms
107,492 KB
testcase_23 AC 155 ms
118,224 KB
testcase_24 AC 155 ms
118,108 KB
testcase_25 AC 156 ms
117,456 KB
testcase_26 AC 157 ms
118,784 KB
testcase_27 AC 74 ms
97,776 KB
testcase_28 AC 74 ms
97,964 KB
testcase_29 AC 73 ms
97,476 KB
testcase_30 AC 72 ms
97,456 KB
testcase_31 AC 114 ms
106,916 KB
testcase_32 WA -
testcase_33 AC 117 ms
116,760 KB
testcase_34 AC 116 ms
116,660 KB
testcase_35 AC 86 ms
102,744 KB
testcase_36 AC 119 ms
107,124 KB
testcase_37 AC 121 ms
116,888 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 151 ms
110,948 KB
testcase_42 AC 150 ms
110,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
A.sort()
z = 0
B = []
for a in A:
    if a == 0:
        z += 1
    else:
        B.append(a)

import math
d = 0

B.sort()
for i in range(len(B)-1):
    d = math.gcd(d, B[i+1]-B[i])

if d == 0:
    print('Yes')
    exit()

cnt = 0
for i in range(len(B)-1):
    cnt += (B[i+1]-B[i])//d-1

if cnt <= z:
    print('Yes')
else:
    print('No')
0