結果

問題 No.1884 Sequence
ユーザー n_nan_na
提出日時 2022-03-25 23:51:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 467 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 108,736 KB
最終ジャッジ日時 2024-10-14 08:08:45
合計ジャッジ時間 6,204 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,836 KB
testcase_01 AC 38 ms
52,896 KB
testcase_02 AC 37 ms
52,624 KB
testcase_03 AC 37 ms
52,204 KB
testcase_04 AC 37 ms
52,728 KB
testcase_05 AC 36 ms
52,128 KB
testcase_06 AC 37 ms
52,416 KB
testcase_07 AC 37 ms
53,144 KB
testcase_08 AC 36 ms
52,320 KB
testcase_09 RE -
testcase_10 AC 138 ms
104,772 KB
testcase_11 AC 138 ms
104,664 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 73 ms
91,244 KB
testcase_15 AC 116 ms
108,232 KB
testcase_16 AC 149 ms
104,920 KB
testcase_17 WA -
testcase_18 AC 93 ms
108,736 KB
testcase_19 AC 82 ms
102,320 KB
testcase_20 AC 107 ms
105,584 KB
testcase_21 AC 98 ms
103,616 KB
testcase_22 AC 127 ms
107,768 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 166 ms
103,812 KB
testcase_26 AC 141 ms
104,904 KB
testcase_27 AC 74 ms
97,212 KB
testcase_28 AC 76 ms
98,512 KB
testcase_29 AC 74 ms
97,360 KB
testcase_30 AC 75 ms
97,028 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 105 ms
103,128 KB
testcase_34 AC 105 ms
103,192 KB
testcase_35 AC 88 ms
102,124 KB
testcase_36 AC 114 ms
102,252 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 143 ms
100,540 KB
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
num = A.count(0)

A.sort()
d = 10**16

for i in range(N-1):
    if A[i+1] == 0:
        continue
    tmp = A[i+1] - A[i]
    d = min(tmp,d)
A.reverse()

ans = "Yes"
for i in range(N-1):
    if A[i+1] == 0:
        continue
    if A[i+1] - A[i] == d:
        continue
    if (A[i] - A[i+1])%d != 0:
        ans = "No"
        break
    else:
        num -= (A[i] - A[i+1])//d - 1

print(ans if num >= 0 else "No")

0