結果

問題 No.2500 Products in a Range
ユーザー titiatitia
提出日時 2023-10-13 23:26:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,174 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,644 KB
最終ジャッジ日時 2024-09-15 19:18:37
合計ジャッジ時間 25,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 832 ms
77,716 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 114 ms
76,416 KB
testcase_17 AC 113 ms
76,288 KB
testcase_18 AC 115 ms
76,312 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 62 ms
64,128 KB
testcase_33 AC 688 ms
77,444 KB
testcase_34 AC 1,583 ms
77,620 KB
testcase_35 AC 42 ms
52,224 KB
testcase_36 AC 42 ms
52,480 KB
testcase_37 AC 42 ms
52,608 KB
testcase_38 AC 41 ms
52,480 KB
testcase_39 AC 42 ms
52,608 KB
testcase_40 AC 42 ms
52,224 KB
testcase_41 AC 42 ms
52,224 KB
testcase_42 AC 41 ms
52,352 KB
testcase_43 AC 41 ms
52,352 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 TLE -
testcase_48 AC 45 ms
52,992 KB
testcase_49 WA -
testcase_50 AC 116 ms
76,720 KB
testcase_51 AC 155 ms
77,376 KB
testcase_52 AC 118 ms
76,092 KB
testcase_53 AC 102 ms
76,032 KB
testcase_54 AC 43 ms
52,736 KB
testcase_55 AC 110 ms
76,568 KB
testcase_56 AC 119 ms
76,160 KB
testcase_57 AC 102 ms
76,288 KB
testcase_58 AC 80 ms
71,552 KB
testcase_59 AC 115 ms
76,108 KB
testcase_60 AC 67 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect,bisect_left

n,l,r=map(int,input().split())
A=list(map(int,input().split()))

PLUS=[]
MINUS=[]
zero=0

for a in A:
    if a>0:
        PLUS.append(a)
    elif a<0:
        MINUS.append(a)
    else:
        zero+=1
    
PLUS.sort()
MINUS.sort()

def check(x,y,A):
    for i in range(x+1,x+3):
        if x<=i<=y:
            if x!=i:
                if l<=A[x]*A[i]<=r:
                    pass
                else:
                    return False
            if y!=i:
                if l<=A[y]*A[i]<=r:
                    pass
                else:
                    return False

    for i in range(y-2,y):
        if x<=i<=y:
            if x!=i:
                if l<=A[x]*A[i]<=r:
                    pass
                else:
                    return False
            if y!=i:
                if l<=A[y]*A[i]<=r:
                    pass
                else:
                    return False

    return True

ANS=0

for i in range(len(PLUS)):
    for ind in range(i,len(PLUS)):
        if check(i,ind,PLUS)==False:
            break
        
        k0=PLUS[i]
        k1=PLUS[ind]

        if l>=0:
            MIN=max(l//k0,l//k1)
        else:
            MIN=max((l+k0-1)//k0,(l+k1-1)//k1)

        if r>=0:
            MAX=min(r//k0,r//k1)
        else:
            MAX=min((r+k0-1)//k0,(r+k1-1)//k1)

        plus=0

        if MIN<=MAX:
            x0=bisect_left(MINUS,MIN)
            x1=bisect(MINUS,MAX)

            plus=x1-x0

        #print(i,ind,MIN,MAX,plus)

        ANS=max(ANS,ind-i+1+plus)

for i in range(len(MINUS)):
    for ind in range(i,len(MINUS)):
        if check(i,ind,MINUS)==False:
            break
        
        k0=MINUS[i]
        k1=MINUS[ind]

        if l>=0:
            MAX=min(l//k0,l//k1)
        else:
            MAX=min((l+k0-1)//k0,(l+k1-1)//k1)

        if r>=0:
            MIN=max(r//k0,r//k1)
        else:
            MIN=max((r+k0-1)//k0,(r+k1-1)//k1)

        plus=0

        if MIN<=MAX:
            x0=bisect_left(PLUS,MIN)
            x1=bisect(PLUS,MAX)

            plus=x1-x0

        #print(i,ind,MIN,MAX,plus)

        ANS=max(ANS,ind-i+1+plus)

print(ANS)
    

    
0