結果

問題 No.2500 Products in a Range
ユーザー mkawa2mkawa2
提出日時 2023-10-13 22:32:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,138 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 272,292 KB
最終ジャッジ日時 2024-09-15 18:17:43
合計ジャッジ時間 14,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 62 ms
67,968 KB
testcase_03 AC 53 ms
62,080 KB
testcase_04 AC 61 ms
66,432 KB
testcase_05 AC 61 ms
67,200 KB
testcase_06 AC 52 ms
63,360 KB
testcase_07 AC 153 ms
91,556 KB
testcase_08 AC 460 ms
228,992 KB
testcase_09 AC 58 ms
67,072 KB
testcase_10 AC 429 ms
159,904 KB
testcase_11 AC 548 ms
205,568 KB
testcase_12 AC 215 ms
113,792 KB
testcase_13 AC 61 ms
68,224 KB
testcase_14 AC 554 ms
228,480 KB
testcase_15 AC 72 ms
73,088 KB
testcase_16 AC 288 ms
201,216 KB
testcase_17 AC 149 ms
114,224 KB
testcase_18 AC 172 ms
136,588 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 433 ms
272,000 KB
testcase_23 AC 431 ms
272,000 KB
testcase_24 AC 429 ms
272,256 KB
testcase_25 AC 876 ms
271,872 KB
testcase_26 AC 867 ms
272,292 KB
testcase_27 AC 849 ms
272,088 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 199 ms
113,536 KB
testcase_34 AC 474 ms
182,748 KB
testcase_35 AC 37 ms
52,224 KB
testcase_36 AC 37 ms
52,096 KB
testcase_37 AC 37 ms
51,840 KB
testcase_38 AC 37 ms
52,352 KB
testcase_39 AC 38 ms
52,224 KB
testcase_40 AC 39 ms
52,352 KB
testcase_41 AC 38 ms
52,224 KB
testcase_42 AC 37 ms
52,096 KB
testcase_43 AC 37 ms
51,712 KB
testcase_44 AC 119 ms
91,312 KB
testcase_45 AC 48 ms
61,952 KB
testcase_46 AC 134 ms
113,792 KB
testcase_47 AC 854 ms
272,256 KB
testcase_48 AC 44 ms
59,904 KB
testcase_49 WA -
testcase_50 AC 172 ms
136,832 KB
testcase_51 AC 188 ms
136,576 KB
testcase_52 AC 342 ms
228,308 KB
testcase_53 AC 91 ms
91,084 KB
testcase_54 AC 42 ms
59,008 KB
testcase_55 AC 172 ms
136,576 KB
testcase_56 AC 185 ms
136,536 KB
testcase_57 AC 401 ms
228,528 KB
testcase_58 AC 89 ms
91,008 KB
testcase_59 AC 374 ms
247,068 KB
testcase_60 AC 54 ms
67,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

n, l, r = LI()
aa = LI()
aa.sort()

dp = [[0]*n for _ in range(n)]
for i in range(n):
    dp[i][i]=1
    for j in range(i):
        if l <= aa[i]*aa[j] <= r: dp[i][j] = dp[j][i] = 1

for i in range(n-1):
    for j in range(n-1):
        if dp[i+1][j+1]==0:continue
        dp[i+1][j+1]=min(dp[i][j],dp[i+1][j],dp[i][j+1])+1

ans=max(dp[i][i] for i in range(n))
print(ans)
0