結果

問題 No.2500 Products in a Range
ユーザー rlangevinrlangevin
提出日時 2023-10-13 21:57:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 968 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,180 KB
最終ジャッジ日時 2024-09-15 17:39:17
合計ジャッジ時間 28,417 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 141 ms
76,928 KB
testcase_03 AC 99 ms
75,648 KB
testcase_04 AC 117 ms
76,184 KB
testcase_05 AC 140 ms
76,544 KB
testcase_06 AC 81 ms
71,424 KB
testcase_07 AC 314 ms
77,696 KB
testcase_08 AC 1,027 ms
79,316 KB
testcase_09 AC 192 ms
77,752 KB
testcase_10 AC 848 ms
79,616 KB
testcase_11 AC 961 ms
79,872 KB
testcase_12 AC 448 ms
78,828 KB
testcase_13 AC 149 ms
77,056 KB
testcase_14 AC 1,045 ms
79,420 KB
testcase_15 AC 183 ms
76,928 KB
testcase_16 AC 690 ms
77,824 KB
testcase_17 AC 390 ms
77,540 KB
testcase_18 AC 419 ms
77,680 KB
testcase_19 AC 841 ms
79,368 KB
testcase_20 AC 933 ms
80,100 KB
testcase_21 AC 195 ms
77,312 KB
testcase_22 AC 1,103 ms
80,568 KB
testcase_23 AC 800 ms
80,112 KB
testcase_24 AC 1,042 ms
79,764 KB
testcase_25 AC 1,396 ms
80,512 KB
testcase_26 AC 1,422 ms
80,384 KB
testcase_27 AC 1,388 ms
81,180 KB
testcase_28 AC 770 ms
78,472 KB
testcase_29 AC 246 ms
77,568 KB
testcase_30 AC 217 ms
77,568 KB
testcase_31 AC 125 ms
76,672 KB
testcase_32 AC 113 ms
75,776 KB
testcase_33 AC 381 ms
78,336 KB
testcase_34 AC 810 ms
79,116 KB
testcase_35 AC 41 ms
52,352 KB
testcase_36 AC 41 ms
51,968 KB
testcase_37 AC 41 ms
51,968 KB
testcase_38 AC 42 ms
51,968 KB
testcase_39 AC 43 ms
52,480 KB
testcase_40 AC 41 ms
52,224 KB
testcase_41 AC 41 ms
52,096 KB
testcase_42 AC 40 ms
52,096 KB
testcase_43 AC 40 ms
51,968 KB
testcase_44 WA -
testcase_45 AC 41 ms
51,968 KB
testcase_46 AC 47 ms
59,392 KB
testcase_47 AC 1,331 ms
80,000 KB
testcase_48 AC 77 ms
69,504 KB
testcase_49 AC 89 ms
74,368 KB
testcase_50 AC 470 ms
78,300 KB
testcase_51 AC 535 ms
78,332 KB
testcase_52 AC 864 ms
79,240 KB
testcase_53 AC 261 ms
78,032 KB
testcase_54 AC 62 ms
64,384 KB
testcase_55 AC 431 ms
78,268 KB
testcase_56 AC 455 ms
78,128 KB
testcase_57 AC 811 ms
77,952 KB
testcase_58 AC 214 ms
77,696 KB
testcase_59 AC 911 ms
80,424 KB
testcase_60 AC 152 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

N, l, r = map(int, input().split())
B = sorted(list(map(int, input().split())))
A = []
zero = 0
for b in B:
    if b == 0:
        zero += 1
        N -= 1
    else:
        A.append(b)
        
def f(a):
    if a > 0:
        return (l + a - 1)//a, r//a
    else:
        return (-r -a - 1)//(-a), (-l)//(-a)

ans = 1
D = dict()
for a in A:
    mi, ma = f(a)
    D[a] = bisect_right(A, a)
    D[mi] = bisect_right(A, mi)
    D[ma] = bisect_right(A, ma)
    D[a-1] = bisect_right(A, a-1)
    D[mi-1] = bisect_right(A, mi-1)
    D[ma-1] = bisect_right(A, ma-1)


for i in range(N):
    for j in range(i + 1, N):
        mi1, ma1 = f(A[i])
        mi2, ma2 = f(A[j])
        mi = max(mi1, mi2, A[i]) - 1
        ma = min(ma1, ma2, A[j])
        cnt = int(A[i] <= mi) + int(A[j] > ma)
        if not (l <= A[i] * A[j] <= r):
            continue
        ans = max(ans, max(0, D[ma] - D[mi]) + cnt)
        
if l <= 0 <= r:
    ans += zero
print(ans)
0