結果

問題 No.1884 Sequence
ユーザー AEnAEn
提出日時 2022-05-12 14:19:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 119,056 KB
最終ジャッジ日時 2024-07-20 07:37:18
合計ジャッジ時間 6,743 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 190 ms
118,220 KB
testcase_11 AC 191 ms
118,480 KB
testcase_12 AC 71 ms
88,704 KB
testcase_13 AC 77 ms
92,288 KB
testcase_14 AC 86 ms
91,392 KB
testcase_15 AC 140 ms
108,544 KB
testcase_16 AC 171 ms
117,860 KB
testcase_17 AC 100 ms
106,112 KB
testcase_18 AC 112 ms
108,032 KB
testcase_19 AC 100 ms
104,320 KB
testcase_20 AC 123 ms
107,904 KB
testcase_21 AC 117 ms
107,776 KB
testcase_22 AC 134 ms
107,264 KB
testcase_23 AC 166 ms
117,840 KB
testcase_24 AC 156 ms
118,108 KB
testcase_25 AC 161 ms
116,820 KB
testcase_26 AC 156 ms
119,056 KB
testcase_27 AC 79 ms
96,512 KB
testcase_28 AC 84 ms
96,384 KB
testcase_29 AC 85 ms
96,256 KB
testcase_30 AC 87 ms
97,152 KB
testcase_31 AC 122 ms
101,760 KB
testcase_32 AC 157 ms
117,788 KB
testcase_33 AC 112 ms
102,812 KB
testcase_34 AC 112 ms
102,560 KB
testcase_35 AC 97 ms
99,328 KB
testcase_36 AC 118 ms
101,632 KB
testcase_37 AC 125 ms
103,092 KB
testcase_38 AC 112 ms
100,588 KB
testcase_39 AC 97 ms
102,144 KB
testcase_40 AC 101 ms
103,168 KB
testcase_41 AC 152 ms
110,644 KB
testcase_42 AC 164 ms
109,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = int(input())
A = list(map(int, input().split()))
A.sort()
cnt = 0
start = 0
sa = []
bad = set()
bad_cnt = 0
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)
            else:
                bad.add(A[i])
                bad_cnt += 1
        start = A[i]
    if len(sa)==1:
        gcd = sa[0]
    elif len(sa)>1:
        gcd = math.gcd(gcd, sa[-1])
res = 0
if len(bad) > 1 or (len(bad)==1 and 1+bad_cnt+cnt<N):
    print('No')
    exit()
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