結果

問題 No.2500 Products in a Range
ユーザー rlangevinrlangevin
提出日時 2023-10-13 21:41:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 960 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 80,880 KB
最終ジャッジ日時 2024-09-15 17:19:45
合計ジャッジ時間 27,837 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 125 ms
76,672 KB
testcase_03 AC 86 ms
75,936 KB
testcase_04 AC 109 ms
75,800 KB
testcase_05 AC 128 ms
76,804 KB
testcase_06 AC 71 ms
70,528 KB
testcase_07 AC 300 ms
77,496 KB
testcase_08 AC 1,020 ms
79,180 KB
testcase_09 AC 177 ms
77,864 KB
testcase_10 AC 789 ms
79,316 KB
testcase_11 AC 939 ms
79,820 KB
testcase_12 AC 433 ms
78,612 KB
testcase_13 AC 134 ms
76,672 KB
testcase_14 AC 1,030 ms
79,384 KB
testcase_15 AC 172 ms
76,672 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1,084 ms
80,548 KB
testcase_23 AC 811 ms
79,868 KB
testcase_24 AC 1,034 ms
79,460 KB
testcase_25 AC 1,402 ms
80,488 KB
testcase_26 AC 1,393 ms
80,384 KB
testcase_27 AC 1,389 ms
80,880 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 360 ms
78,264 KB
testcase_34 AC 798 ms
79,248 KB
testcase_35 AC 39 ms
52,224 KB
testcase_36 AC 39 ms
52,608 KB
testcase_37 AC 39 ms
51,712 KB
testcase_38 AC 39 ms
52,352 KB
testcase_39 AC 40 ms
52,736 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 38 ms
51,968 KB
testcase_43 WA -
testcase_44 AC 43 ms
58,624 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 1,321 ms
80,312 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 461 ms
78,720 KB
testcase_51 AC 537 ms
78,692 KB
testcase_52 AC 865 ms
79,240 KB
testcase_53 AC 266 ms
78,292 KB
testcase_54 AC 55 ms
64,640 KB
testcase_55 AC 436 ms
77,712 KB
testcase_56 AC 463 ms
77,880 KB
testcase_57 AC 814 ms
78,208 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = 0
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, D[ma] - D[mi] + cnt)
        
if l <= 0 <= r:
    ans += zero
print(ans)
0