結果

問題 No.2500 Products in a Range
ユーザー hato336hato336
提出日時 2023-10-13 21:31:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-09-15 17:08:03
合計ジャッジ時間 11,250 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
85,892 KB
testcase_01 AC 131 ms
85,784 KB
testcase_02 AC 133 ms
85,504 KB
testcase_03 WA -
testcase_04 AC 132 ms
85,624 KB
testcase_05 AC 130 ms
85,840 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 150 ms
89,728 KB
testcase_09 AC 133 ms
85,508 KB
testcase_10 AC 146 ms
89,984 KB
testcase_11 AC 144 ms
89,728 KB
testcase_12 AC 146 ms
90,084 KB
testcase_13 AC 134 ms
85,888 KB
testcase_14 AC 147 ms
89,788 KB
testcase_15 AC 132 ms
85,508 KB
testcase_16 AC 145 ms
89,856 KB
testcase_17 AC 143 ms
89,856 KB
testcase_18 AC 142 ms
89,748 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 149 ms
89,920 KB
testcase_23 AC 147 ms
89,804 KB
testcase_24 AC 148 ms
90,100 KB
testcase_25 AC 145 ms
90,092 KB
testcase_26 AC 149 ms
89,916 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 145 ms
90,080 KB
testcase_34 AC 147 ms
89,984 KB
testcase_35 AC 129 ms
85,632 KB
testcase_36 AC 132 ms
85,624 KB
testcase_37 AC 128 ms
85,760 KB
testcase_38 AC 132 ms
85,504 KB
testcase_39 AC 129 ms
85,632 KB
testcase_40 AC 130 ms
85,760 KB
testcase_41 AC 129 ms
85,504 KB
testcase_42 AC 128 ms
85,780 KB
testcase_43 AC 130 ms
85,760 KB
testcase_44 AC 146 ms
89,984 KB
testcase_45 AC 132 ms
85,632 KB
testcase_46 AC 145 ms
89,860 KB
testcase_47 AC 151 ms
89,928 KB
testcase_48 AC 128 ms
85,580 KB
testcase_49 WA -
testcase_50 AC 148 ms
89,984 KB
testcase_51 AC 148 ms
89,856 KB
testcase_52 AC 150 ms
89,792 KB
testcase_53 AC 148 ms
90,136 KB
testcase_54 AC 130 ms
85,584 KB
testcase_55 AC 148 ms
89,728 KB
testcase_56 AC 145 ms
89,728 KB
testcase_57 AC 147 ms
89,728 KB
testcase_58 AC 150 ms
89,984 KB
testcase_59 AC 149 ms
89,876 KB
testcase_60 AC 134 ms
85,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#n = int(input())
#
#alist = []
#s = input()
n,l,r = map(int,input().split())
#for i in range(n):
#    alist.append(list(map(int,input().split())))
alist = list(map(int,input().split()))
alist.sort()
ans = 1
temp = 1
mi = -1
for i in range(n-1):
    if l <= alist[i] * alist[i+1] <= r and (mi == -1 or l <= mi * alist[i+1] <= r):
        temp += 1
        if temp == 2:
            mi = alist[i]
    else:
        ans = max(ans,temp)
        temp = 1
        mi = -1
ans = max(ans,temp)
#print(alist)
print(ans)
0