結果

問題 No.2500 Products in a Range
ユーザー detteiuudetteiuu
提出日時 2024-12-22 01:44:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 304 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 76,808 KB
最終ジャッジ日時 2024-12-22 01:45:01
合計ジャッジ時間 9,745 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,132 KB
testcase_01 AC 36 ms
52,668 KB
testcase_02 AC 69 ms
70,816 KB
testcase_03 AC 46 ms
60,944 KB
testcase_04 AC 59 ms
65,912 KB
testcase_05 AC 71 ms
70,924 KB
testcase_06 AC 48 ms
63,596 KB
testcase_07 AC 122 ms
76,356 KB
testcase_08 AC 250 ms
76,124 KB
testcase_09 AC 93 ms
75,668 KB
testcase_10 AC 186 ms
72,728 KB
testcase_11 AC 197 ms
72,072 KB
testcase_12 AC 135 ms
76,324 KB
testcase_13 AC 73 ms
72,380 KB
testcase_14 AC 280 ms
76,808 KB
testcase_15 AC 79 ms
73,644 KB
testcase_16 AC 156 ms
67,360 KB
testcase_17 AC 107 ms
66,044 KB
testcase_18 AC 105 ms
66,244 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 263 ms
76,176 KB
testcase_23 AC 236 ms
74,396 KB
testcase_24 AC 243 ms
76,276 KB
testcase_25 AC 305 ms
76,576 KB
testcase_26 AC 336 ms
75,920 KB
testcase_27 AC 266 ms
73,640 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 108 ms
69,500 KB
testcase_34 AC 185 ms
69,608 KB
testcase_35 AC 36 ms
52,596 KB
testcase_36 AC 37 ms
52,128 KB
testcase_37 AC 36 ms
52,616 KB
testcase_38 AC 37 ms
52,460 KB
testcase_39 AC 37 ms
53,832 KB
testcase_40 AC 36 ms
52,340 KB
testcase_41 AC 36 ms
52,020 KB
testcase_42 AC 37 ms
51,944 KB
testcase_43 AC 37 ms
51,968 KB
testcase_44 AC 61 ms
62,924 KB
testcase_45 AC 44 ms
60,336 KB
testcase_46 AC 65 ms
61,800 KB
testcase_47 AC 262 ms
70,680 KB
testcase_48 AC 48 ms
62,368 KB
testcase_49 WA -
testcase_50 AC 126 ms
71,876 KB
testcase_51 AC 136 ms
73,928 KB
testcase_52 AC 211 ms
71,672 KB
testcase_53 AC 85 ms
71,088 KB
testcase_54 AC 45 ms
58,760 KB
testcase_55 AC 107 ms
68,524 KB
testcase_56 AC 120 ms
70,136 KB
testcase_57 AC 168 ms
68,536 KB
testcase_58 AC 75 ms
65,988 KB
testcase_59 AC 220 ms
69,976 KB
testcase_60 AC 60 ms
65,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, L, R = map(int, input().split())
A = sorted(list(map(int, input().split())))

ans = 1
for i in range(N-1):
    for j in range(i+1, N):
        a = A[i]*A[j]
        b = A[i]*A[i+1]
        c = A[j]*A[j-1]
        if L <= min(a, b, c) <= max(a, b, c) <= R:
            ans = max(ans, j-i+1)

print(ans)
0