結果

問題 No.2500 Products in a Range
ユーザー mkawa2mkawa2
提出日時 2023-10-13 22:39:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 974 ms / 2,000 ms
コード長 1,184 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 272,256 KB
最終ジャッジ日時 2024-09-15 18:24:32
合計ジャッジ時間 16,163 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 73 ms
68,224 KB
testcase_03 AC 57 ms
62,208 KB
testcase_04 AC 69 ms
67,072 KB
testcase_05 AC 73 ms
68,096 KB
testcase_06 AC 59 ms
63,872 KB
testcase_07 AC 177 ms
91,520 KB
testcase_08 AC 493 ms
228,480 KB
testcase_09 AC 69 ms
67,072 KB
testcase_10 AC 460 ms
159,616 KB
testcase_11 AC 583 ms
205,568 KB
testcase_12 AC 233 ms
113,792 KB
testcase_13 AC 73 ms
68,480 KB
testcase_14 AC 586 ms
228,352 KB
testcase_15 AC 87 ms
73,216 KB
testcase_16 AC 309 ms
201,344 KB
testcase_17 AC 162 ms
114,048 KB
testcase_18 AC 187 ms
136,704 KB
testcase_19 AC 360 ms
227,968 KB
testcase_20 AC 413 ms
251,392 KB
testcase_21 AC 89 ms
85,376 KB
testcase_22 AC 467 ms
272,128 KB
testcase_23 AC 501 ms
272,256 KB
testcase_24 AC 459 ms
272,128 KB
testcase_25 AC 885 ms
272,256 KB
testcase_26 AC 888 ms
272,256 KB
testcase_27 AC 974 ms
272,128 KB
testcase_28 AC 351 ms
224,256 KB
testcase_29 AC 109 ms
91,008 KB
testcase_30 AC 103 ms
91,136 KB
testcase_31 AC 58 ms
64,256 KB
testcase_32 AC 65 ms
66,944 KB
testcase_33 AC 214 ms
113,536 KB
testcase_34 AC 495 ms
182,272 KB
testcase_35 AC 40 ms
52,096 KB
testcase_36 AC 39 ms
52,224 KB
testcase_37 AC 40 ms
52,224 KB
testcase_38 AC 40 ms
52,096 KB
testcase_39 AC 41 ms
52,352 KB
testcase_40 AC 40 ms
52,096 KB
testcase_41 AC 39 ms
52,224 KB
testcase_42 AC 40 ms
51,712 KB
testcase_43 AC 40 ms
52,096 KB
testcase_44 AC 134 ms
91,264 KB
testcase_45 AC 54 ms
62,080 KB
testcase_46 AC 147 ms
113,920 KB
testcase_47 AC 948 ms
272,000 KB
testcase_48 AC 48 ms
59,904 KB
testcase_49 AC 49 ms
60,160 KB
testcase_50 AC 189 ms
136,704 KB
testcase_51 AC 205 ms
136,704 KB
testcase_52 AC 357 ms
228,480 KB
testcase_53 AC 105 ms
90,880 KB
testcase_54 AC 47 ms
59,008 KB
testcase_55 AC 185 ms
136,576 KB
testcase_56 AC 201 ms
136,576 KB
testcase_57 AC 397 ms
228,352 KB
testcase_58 AC 102 ms
91,136 KB
testcase_59 AC 389 ms
246,912 KB
testcase_60 AC 64 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()

ans=1
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
            ans=2

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(ans,max(dp[i][i] for i in range(n)))
print(ans)
0