結果

問題 No.1532 Different Products
ユーザー H3PO4H3PO4
提出日時 2024-09-07 14:49:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 397 bytes
コンパイル時間 1,158 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 460,180 KB
最終ジャッジ日時 2024-09-07 14:49:52
合計ジャッジ時間 14,626 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,316 KB
testcase_01 AC 825 ms
261,920 KB
testcase_02 AC 38 ms
54,660 KB
testcase_03 AC 39 ms
54,332 KB
testcase_04 AC 42 ms
53,800 KB
testcase_05 AC 40 ms
54,504 KB
testcase_06 AC 39 ms
55,636 KB
testcase_07 AC 48 ms
63,968 KB
testcase_08 AC 51 ms
65,308 KB
testcase_09 AC 127 ms
112,132 KB
testcase_10 AC 880 ms
261,412 KB
testcase_11 AC 554 ms
257,916 KB
testcase_12 AC 3,669 ms
387,660 KB
testcase_13 AC 1,120 ms
261,996 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, K = map(int, input().split())
dp = defaultdict(int)
dp[1] = 1
ans = 0
for i in range(1, N + 1):
    new_dp = dp.copy()
    for k, v in dp.items():
        if i * k * (i + 1) < K:
            new_dp[i * k] += v
        elif i * k <= K:  # i以上は掛けられない
            ans += v
    dp = new_dp
print(ans + sum(dp.values()) - 1)  # 空集合除外
0