結果

問題 No.2500 Products in a Range
ユーザー titiatitia
提出日時 2023-10-14 02:41:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,016 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 77,604 KB
最終ジャッジ日時 2024-09-15 22:20:26
合計ジャッジ時間 17,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 112 ms
75,776 KB
testcase_03 AC 71 ms
68,096 KB
testcase_04 AC 87 ms
75,264 KB
testcase_05 AC 94 ms
75,520 KB
testcase_06 AC 70 ms
67,840 KB
testcase_07 AC 227 ms
76,840 KB
testcase_08 AC 582 ms
76,528 KB
testcase_09 AC 100 ms
75,904 KB
testcase_10 AC 468 ms
76,468 KB
testcase_11 AC 573 ms
76,764 KB
testcase_12 AC 277 ms
76,604 KB
testcase_13 AC 113 ms
76,416 KB
testcase_14 AC 846 ms
77,604 KB
testcase_15 AC 147 ms
76,272 KB
testcase_16 AC 238 ms
76,416 KB
testcase_17 AC 352 ms
76,260 KB
testcase_18 AC 161 ms
76,032 KB
testcase_19 AC 159 ms
64,128 KB
testcase_20 AC 179 ms
64,128 KB
testcase_21 AC 60 ms
62,464 KB
testcase_22 AC 1,067 ms
76,244 KB
testcase_23 AC 1,092 ms
76,208 KB
testcase_24 AC 1,066 ms
76,308 KB
testcase_25 AC 811 ms
76,092 KB
testcase_26 AC 810 ms
76,736 KB
testcase_27 AC 823 ms
76,560 KB
testcase_28 AC 152 ms
64,512 KB
testcase_29 AC 72 ms
63,104 KB
testcase_30 AC 70 ms
63,360 KB
testcase_31 AC 73 ms
67,712 KB
testcase_32 AC 56 ms
61,568 KB
testcase_33 AC 246 ms
76,032 KB
testcase_34 AC 494 ms
76,160 KB
testcase_35 AC 43 ms
51,968 KB
testcase_36 AC 42 ms
52,096 KB
testcase_37 AC 42 ms
51,712 KB
testcase_38 AC 41 ms
52,224 KB
testcase_39 AC 43 ms
52,352 KB
testcase_40 AC 42 ms
51,968 KB
testcase_41 AC 42 ms
52,480 KB
testcase_42 AC 42 ms
52,352 KB
testcase_43 AC 42 ms
52,352 KB
testcase_44 WA -
testcase_45 AC 48 ms
59,264 KB
testcase_46 AC 65 ms
61,184 KB
testcase_47 AC 801 ms
76,304 KB
testcase_48 AC 49 ms
58,752 KB
testcase_49 AC 61 ms
63,232 KB
testcase_50 AC 180 ms
76,544 KB
testcase_51 AC 224 ms
76,468 KB
testcase_52 AC 313 ms
76,544 KB
testcase_53 AC 135 ms
76,068 KB
testcase_54 AC 52 ms
60,416 KB
testcase_55 AC 179 ms
76,032 KB
testcase_56 AC 196 ms
76,288 KB
testcase_57 AC 425 ms
76,160 KB
testcase_58 AC 105 ms
75,264 KB
testcase_59 AC 306 ms
76,416 KB
testcase_60 AC 87 ms
71,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ANS=1
for i in range(n):
    for j in range(i+1,n):
        if l<=A[i]*A[j]<=r:
            ANS=2

if r<0:
    print(ANS)
    exit()

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

if l>0:
    for i in range(len(PLUS)):
        for j in range(i,len(PLUS)):
            if check(i,j,PLUS)==True:
                ANS=max(ANS,j-i+1)

    for i in range(len(MINUS)):
        for j in range(i,len(MINUS)):
            if check(i,j,MINUS)==True:
                ANS=max(ANS,j-i+1)

    print(ANS)
    exit()

MINUS.reverse()

for i in range(len(PLUS)+1):
    for j in range(len(MINUS)+1):
        x0=0
        if i-2>=0:
            x0=PLUS[i-2]
        x1=0
        if i-1>=0:
            x1=PLUS[i-1]

        y0=0
        if j-2>=0:
            y0=MINUS[j-2]
        y1=0
        if j-1>=0:
            y1=MINUS[j-1]

        LIST=[x0,x1,y0,y1]

        flag=1

        for k in range(4):
            for m in range(k+1,4):
                if l<=LIST[k]*LIST[m]<=r:
                    pass
                else:
                    flag=0

        if flag==1:
            ANS=max(ANS,i+j)

print(ANS+zero)

        
        
        
            
    
0