結果

問題 No.1884 Sequence
ユーザー Goltermann大和Goltermann大和
提出日時 2022-03-25 22:48:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 573 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,100 KB
最終ジャッジ日時 2024-10-14 06:48:31
合計ジャッジ時間 9,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 34 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 RE -
testcase_10 AC 307 ms
34,144 KB
testcase_11 AC 310 ms
34,092 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 89 ms
14,112 KB
testcase_15 AC 253 ms
23,108 KB
testcase_16 AC 399 ms
34,136 KB
testcase_17 AC 154 ms
20,280 KB
testcase_18 AC 208 ms
24,508 KB
testcase_19 AC 171 ms
21,344 KB
testcase_20 AC 189 ms
20,684 KB
testcase_21 AC 141 ms
19,144 KB
testcase_22 AC 192 ms
22,060 KB
testcase_23 AC 410 ms
32,456 KB
testcase_24 AC 402 ms
34,132 KB
testcase_25 AC 356 ms
32,580 KB
testcase_26 AC 410 ms
34,072 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 98 ms
14,516 KB
testcase_30 AC 101 ms
14,516 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 332 ms
28,692 KB
testcase_42 AC 334 ms
28,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n = int(input())
a = list(map(int,input().split()))
a_plus = []
zero_count = 0
for _ in a:
    if _ != 0:
        a_plus.append(_)
    else:
        zero_count += 1
a_plus.sort()
a_dfr = [a_plus[i+1]-a_plus[i] for i in range(len(a_plus)-1)]
min_dfr = min(a_dfr)
if min_dfr == 0 and (1 in set(a_plus)) and len(set(a_plus))==1:
    print("Yes")
    sys.exit()
mlt_count = 0
for j in a_dfr:
    if j%min_dfr==0:
        mlt_count += (j//min_dfr)-1
    else:
        print("No")
        sys.exit()

if mlt_count <= zero_count:
    print("Yes")
else:
    print("No")
0