結果

問題 No.1532 Different Products
ユーザー convexineqconvexineq
提出日時 2021-06-04 23:09:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 875 ms / 4,000 ms
コード長 236 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 168,408 KB
最終ジャッジ日時 2024-11-20 06:42:46
合計ジャッジ時間 31,464 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,368 KB
testcase_01 AC 160 ms
88,608 KB
testcase_02 AC 39 ms
55,292 KB
testcase_03 AC 40 ms
54,724 KB
testcase_04 AC 39 ms
53,952 KB
testcase_05 AC 39 ms
53,548 KB
testcase_06 AC 40 ms
54,788 KB
testcase_07 AC 47 ms
62,228 KB
testcase_08 AC 49 ms
64,680 KB
testcase_09 AC 63 ms
74,056 KB
testcase_10 AC 157 ms
91,324 KB
testcase_11 AC 141 ms
87,128 KB
testcase_12 AC 374 ms
117,976 KB
testcase_13 AC 181 ms
95,988 KB
testcase_14 AC 720 ms
147,680 KB
testcase_15 AC 47 ms
63,900 KB
testcase_16 AC 199 ms
90,672 KB
testcase_17 AC 124 ms
87,532 KB
testcase_18 AC 91 ms
87,632 KB
testcase_19 AC 339 ms
119,044 KB
testcase_20 AC 712 ms
145,556 KB
testcase_21 AC 262 ms
93,064 KB
testcase_22 AC 199 ms
93,868 KB
testcase_23 AC 105 ms
88,316 KB
testcase_24 AC 650 ms
141,428 KB
testcase_25 AC 357 ms
119,524 KB
testcase_26 AC 70 ms
77,724 KB
testcase_27 AC 345 ms
97,944 KB
testcase_28 AC 247 ms
92,592 KB
testcase_29 AC 247 ms
91,984 KB
testcase_30 AC 510 ms
125,556 KB
testcase_31 AC 492 ms
124,124 KB
testcase_32 AC 545 ms
129,336 KB
testcase_33 AC 440 ms
114,312 KB
testcase_34 AC 641 ms
144,216 KB
testcase_35 AC 558 ms
132,376 KB
testcase_36 AC 654 ms
138,772 KB
testcase_37 AC 170 ms
87,060 KB
testcase_38 AC 684 ms
144,212 KB
testcase_39 AC 605 ms
135,204 KB
testcase_40 AC 602 ms
134,700 KB
testcase_41 AC 839 ms
161,552 KB
testcase_42 AC 766 ms
150,936 KB
testcase_43 AC 793 ms
155,004 KB
testcase_44 AC 875 ms
164,584 KB
testcase_45 AC 839 ms
163,892 KB
testcase_46 AC 826 ms
164,444 KB
testcase_47 AC 848 ms
165,820 KB
testcase_48 AC 852 ms
163,856 KB
testcase_49 AC 856 ms
161,892 KB
testcase_50 AC 870 ms
164,584 KB
testcase_51 AC 864 ms
168,408 KB
testcase_52 AC 847 ms
164,576 KB
testcase_53 AC 865 ms
165,692 KB
testcase_54 AC 845 ms
164,784 KB
testcase_55 AC 851 ms
163,900 KB
testcase_56 AC 841 ms
164,556 KB
testcase_57 AC 857 ms
166,224 KB
testcase_58 AC 855 ms
164,384 KB
testcase_59 AC 814 ms
156,132 KB
testcase_60 AC 858 ms
164,828 KB
testcase_61 AC 38 ms
54,464 KB
testcase_62 AC 37 ms
54,368 KB
testcase_63 AC 851 ms
164,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
from collections import defaultdict
dp = defaultdict(int)
dp[k] = 2
for i in range(2,n+1):
    ndp = dp.copy()
    for k,v in dp.items():
        ndp[k//i] += v
    dp = ndp
print(sum(dp.values())-1-dp[0])
0