結果

問題 No.2500 Products in a Range
ユーザー Akijin_007Akijin_007
提出日時 2023-10-13 21:28:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 61,056 KB
最終ジャッジ日時 2024-09-15 17:04:19
合計ジャッジ時間 4,364 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 39 ms
52,296 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 47 ms
61,056 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 42 ms
59,264 KB
testcase_11 AC 44 ms
59,392 KB
testcase_12 AC 42 ms
59,308 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 44 ms
59,776 KB
testcase_15 AC 39 ms
52,608 KB
testcase_16 AC 43 ms
59,776 KB
testcase_17 AC 43 ms
59,648 KB
testcase_18 AC 42 ms
59,904 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 47 ms
60,928 KB
testcase_23 AC 47 ms
60,544 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 42 ms
59,648 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 42 ms
59,008 KB
testcase_34 AC 43 ms
59,904 KB
testcase_35 AC 38 ms
51,968 KB
testcase_36 AC 37 ms
52,480 KB
testcase_37 AC 38 ms
51,456 KB
testcase_38 AC 39 ms
51,968 KB
testcase_39 AC 38 ms
51,876 KB
testcase_40 AC 38 ms
51,712 KB
testcase_41 AC 37 ms
51,840 KB
testcase_42 AC 39 ms
51,584 KB
testcase_43 AC 38 ms
52,224 KB
testcase_44 AC 42 ms
58,496 KB
testcase_45 AC 38 ms
51,968 KB
testcase_46 AC 44 ms
59,520 KB
testcase_47 AC 43 ms
60,288 KB
testcase_48 AC 38 ms
51,968 KB
testcase_49 WA -
testcase_50 AC 46 ms
60,544 KB
testcase_51 AC 47 ms
60,416 KB
testcase_52 AC 46 ms
60,672 KB
testcase_53 AC 44 ms
59,648 KB
testcase_54 AC 38 ms
51,968 KB
testcase_55 AC 46 ms
59,008 KB
testcase_56 AC 43 ms
59,136 KB
testcase_57 AC 45 ms
59,904 KB
testcase_58 AC 44 ms
58,752 KB
testcase_59 AC 45 ms
60,372 KB
testcase_60 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

from bisect import bisect, bisect_left
N, L, R = map(int, input().split())
A = list(map(int, input().split()))

A = sorted(A)

ans = 1
t = 1
for i in range(N-1):
    p = A[i] * A[i+1]
    if L <= p and p <= R:
        t += 1
    else:
        ans = max(t, ans)
        t = 1

ans = max(ans, t)

print(ans)




0