結果

問題 No.2500 Products in a Range
ユーザー shotoyooshotoyoo
提出日時 2023-10-13 22:42:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,495 bytes
コンパイル時間 839 ms
コンパイル使用メモリ 81,932 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-09-15 18:28:07
合計ジャッジ時間 22,752 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 43 ms
54,272 KB
testcase_02 AC 88 ms
76,652 KB
testcase_03 AC 58 ms
68,608 KB
testcase_04 AC 74 ms
76,160 KB
testcase_05 AC 80 ms
76,632 KB
testcase_06 AC 57 ms
66,048 KB
testcase_07 WA -
testcase_08 AC 623 ms
77,056 KB
testcase_09 AC 79 ms
76,672 KB
testcase_10 AC 652 ms
77,184 KB
testcase_11 WA -
testcase_12 AC 374 ms
76,724 KB
testcase_13 AC 92 ms
76,672 KB
testcase_14 AC 867 ms
77,372 KB
testcase_15 AC 114 ms
76,724 KB
testcase_16 AC 463 ms
76,760 KB
testcase_17 AC 251 ms
76,736 KB
testcase_18 AC 273 ms
76,792 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 716 ms
77,568 KB
testcase_23 AC 731 ms
77,184 KB
testcase_24 AC 719 ms
77,056 KB
testcase_25 AC 1,173 ms
77,312 KB
testcase_26 AC 1,218 ms
77,432 KB
testcase_27 AC 1,213 ms
77,368 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 42 ms
54,144 KB
testcase_36 AC 43 ms
53,760 KB
testcase_37 AC 43 ms
54,016 KB
testcase_38 AC 43 ms
54,400 KB
testcase_39 AC 42 ms
54,144 KB
testcase_40 AC 42 ms
54,016 KB
testcase_41 AC 43 ms
54,400 KB
testcase_42 WA -
testcase_43 AC 42 ms
54,016 KB
testcase_44 AC 90 ms
76,288 KB
testcase_45 AC 49 ms
61,824 KB
testcase_46 AC 58 ms
64,000 KB
testcase_47 WA -
testcase_48 AC 56 ms
65,792 KB
testcase_49 WA -
testcase_50 AC 297 ms
76,768 KB
testcase_51 AC 340 ms
76,544 KB
testcase_52 AC 611 ms
77,212 KB
testcase_53 AC 143 ms
76,800 KB
testcase_54 AC 46 ms
59,776 KB
testcase_55 AC 123 ms
77,012 KB
testcase_56 AC 140 ms
76,800 KB
testcase_57 AC 157 ms
67,968 KB
testcase_58 AC 142 ms
76,528 KB
testcase_59 AC 628 ms
76,812 KB
testcase_60 AC 85 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda : list(map(int, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()]
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]

n,l,r = list(map(int, input().split()))
a = LI()
a.sort()
ps = [v for v in a if v>=0]
ns = [v for v in a if v<0]
ns = ns[::-1]
ans = 1
for i in range(len(ps)):
    for j in range(len(ns)):
        if i+j<=1:
            continue
        MM = []
        if i>=2:
            MM.append(ps[i-1]*ps[i-2])
            MM.append(ps[0]*ps[1])
        if j>=2:
            MM.append(ns[j-1]*ns[j-2])
            MM.append(ns[0]*ns[1])
        if i>=1 and j>=1:
            MM.append(ps[i-1]*ns[j-1])
        if l<=min(MM)<=r and l<=max(MM)<=r:
            ans = max(ans, i+j)
def sub(ps):
    ans = 1
    for i in range(len(ps)):
        for j in range(i+1, len(ps)+1):
            if j-i<=1:
                continue
            if l<=ps[i]*ps[i+1]<=r and l<=ps[j-2]*ps[j-1]<=r:
                ans = max(ans, j-i)
    return ans
ans = max(ans, sub(ps), sub(ns))
print(ans)
0