結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
85,632 KB
testcase_01 AC 140 ms
85,504 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 137 ms
85,632 KB
testcase_05 AC 138 ms
85,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 153 ms
89,984 KB
testcase_09 AC 139 ms
85,632 KB
testcase_10 AC 150 ms
89,728 KB
testcase_11 AC 151 ms
89,984 KB
testcase_12 AC 152 ms
89,856 KB
testcase_13 AC 138 ms
85,632 KB
testcase_14 AC 152 ms
89,472 KB
testcase_15 AC 139 ms
85,632 KB
testcase_16 AC 154 ms
89,472 KB
testcase_17 AC 158 ms
89,472 KB
testcase_18 AC 153 ms
89,728 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 154 ms
90,112 KB
testcase_23 AC 155 ms
89,856 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 151 ms
89,600 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 154 ms
89,600 KB
testcase_34 AC 152 ms
89,600 KB
testcase_35 AC 140 ms
85,376 KB
testcase_36 AC 140 ms
85,632 KB
testcase_37 AC 143 ms
85,632 KB
testcase_38 AC 143 ms
85,504 KB
testcase_39 AC 139 ms
85,632 KB
testcase_40 AC 137 ms
85,760 KB
testcase_41 AC 143 ms
85,248 KB
testcase_42 AC 139 ms
85,504 KB
testcase_43 AC 138 ms
85,632 KB
testcase_44 AC 149 ms
90,112 KB
testcase_45 AC 137 ms
85,504 KB
testcase_46 AC 150 ms
89,728 KB
testcase_47 AC 147 ms
89,472 KB
testcase_48 AC 138 ms
85,504 KB
testcase_49 WA -
testcase_50 AC 159 ms
89,728 KB
testcase_51 AC 158 ms
89,728 KB
testcase_52 AC 159 ms
90,112 KB
testcase_53 AC 151 ms
89,600 KB
testcase_54 AC 136 ms
85,632 KB
testcase_55 AC 149 ms
89,472 KB
testcase_56 AC 156 ms
89,600 KB
testcase_57 AC 155 ms
89,856 KB
testcase_58 AC 156 ms
89,984 KB
testcase_59 AC 156 ms
89,984 KB
testcase_60 AC 143 ms
85,376 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
for i in range(n-1):
    if l <= alist[i] * alist[i+1] <= r:
        temp += 1
    else:
        ans = max(ans,temp)
        temp = 1
ans = max(ans,temp)
#print(alist)
print(ans)
0