結果

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

テストケース

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

ソースコード

diff #

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

print(ans)
0