結果

問題 No.1884 Sequence
ユーザー AEnAEn
提出日時 2022-05-12 14:12:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 530 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 118,576 KB
最終ジャッジ日時 2024-07-20 07:27:06
合計ジャッジ時間 7,879 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,712 KB
testcase_01 AC 43 ms
52,352 KB
testcase_02 AC 45 ms
52,096 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 WA -
testcase_10 AC 201 ms
118,268 KB
testcase_11 AC 201 ms
118,144 KB
testcase_12 AC 76 ms
89,088 KB
testcase_13 AC 78 ms
92,416 KB
testcase_14 AC 85 ms
91,776 KB
testcase_15 AC 135 ms
108,544 KB
testcase_16 AC 166 ms
118,284 KB
testcase_17 AC 104 ms
106,240 KB
testcase_18 AC 114 ms
108,348 KB
testcase_19 AC 106 ms
104,448 KB
testcase_20 AC 130 ms
107,392 KB
testcase_21 AC 120 ms
108,160 KB
testcase_22 AC 135 ms
107,648 KB
testcase_23 AC 165 ms
118,020 KB
testcase_24 AC 167 ms
118,160 KB
testcase_25 AC 168 ms
117,636 KB
testcase_26 AC 169 ms
118,576 KB
testcase_27 AC 83 ms
96,640 KB
testcase_28 AC 83 ms
96,768 KB
testcase_29 AC 83 ms
96,896 KB
testcase_30 AC 84 ms
96,512 KB
testcase_31 AC 121 ms
101,376 KB
testcase_32 AC 171 ms
117,584 KB
testcase_33 AC 114 ms
102,864 KB
testcase_34 AC 115 ms
102,596 KB
testcase_35 AC 94 ms
99,200 KB
testcase_36 AC 122 ms
102,016 KB
testcase_37 AC 127 ms
102,732 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 161 ms
110,588 KB
testcase_42 AC 162 ms
110,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = int(input())
A = list(map(int, input().split()))
A.sort()
cnt = 0
start = 0
sa = []
for i in range(N):
    if A[i] == 0:
        cnt += 1
    else:
        if start != 0:
            if A[i]-start > 0:
                sa.append(A[i]-start)
        start = A[i]
    if len(sa)==1:
        gcd = sa[0]
    elif len(sa)>1:
        gcd = math.gcd(gcd, sa[-1])
res = 0
if len(sa) == 0:
    print('Yes')
    exit()
for i in range(len(sa)):
    res += (sa[i]//gcd-1)
if cnt >= res:
    print('Yes')
else:
    print('No')
0