結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,372 KB
testcase_01 AC 180 ms
88,600 KB
testcase_02 AC 43 ms
55,576 KB
testcase_03 AC 42 ms
54,628 KB
testcase_04 AC 41 ms
55,372 KB
testcase_05 AC 42 ms
53,404 KB
testcase_06 AC 44 ms
54,680 KB
testcase_07 AC 48 ms
61,880 KB
testcase_08 AC 55 ms
63,036 KB
testcase_09 AC 72 ms
74,204 KB
testcase_10 AC 183 ms
91,716 KB
testcase_11 AC 146 ms
87,116 KB
testcase_12 AC 465 ms
117,976 KB
testcase_13 AC 220 ms
95,760 KB
testcase_14 AC 959 ms
147,928 KB
testcase_15 AC 54 ms
63,464 KB
testcase_16 AC 228 ms
90,732 KB
testcase_17 AC 142 ms
87,684 KB
testcase_18 AC 103 ms
87,452 KB
testcase_19 AC 411 ms
119,292 KB
testcase_20 AC 891 ms
145,688 KB
testcase_21 AC 300 ms
93,360 KB
testcase_22 AC 249 ms
93,992 KB
testcase_23 AC 122 ms
87,960 KB
testcase_24 AC 808 ms
141,560 KB
testcase_25 AC 423 ms
119,652 KB
testcase_26 AC 77 ms
78,576 KB
testcase_27 AC 406 ms
98,100 KB
testcase_28 AC 294 ms
92,976 KB
testcase_29 AC 279 ms
92,052 KB
testcase_30 AC 574 ms
125,552 KB
testcase_31 AC 600 ms
124,252 KB
testcase_32 AC 677 ms
129,596 KB
testcase_33 AC 519 ms
114,184 KB
testcase_34 AC 825 ms
144,344 KB
testcase_35 AC 671 ms
132,116 KB
testcase_36 AC 814 ms
138,820 KB
testcase_37 AC 192 ms
87,220 KB
testcase_38 AC 856 ms
144,468 KB
testcase_39 AC 768 ms
134,940 KB
testcase_40 AC 774 ms
134,696 KB
testcase_41 AC 1,153 ms
161,548 KB
testcase_42 AC 1,018 ms
150,680 KB
testcase_43 AC 1,031 ms
154,808 KB
testcase_44 AC 1,153 ms
164,924 KB
testcase_45 AC 1,153 ms
164,144 KB
testcase_46 AC 1,089 ms
164,700 KB
testcase_47 AC 1,130 ms
166,208 KB
testcase_48 AC 1,093 ms
164,364 KB
testcase_49 AC 1,096 ms
161,892 KB
testcase_50 AC 1,109 ms
164,592 KB
testcase_51 AC 1,188 ms
168,544 KB
testcase_52 AC 1,176 ms
164,904 KB
testcase_53 AC 1,141 ms
165,696 KB
testcase_54 AC 1,103 ms
164,828 KB
testcase_55 AC 1,132 ms
164,156 KB
testcase_56 AC 1,109 ms
164,680 KB
testcase_57 AC 1,175 ms
166,612 KB
testcase_58 AC 1,178 ms
164,256 KB
testcase_59 AC 1,155 ms
156,384 KB
testcase_60 AC 1,265 ms
164,684 KB
testcase_61 AC 42 ms
53,840 KB
testcase_62 AC 43 ms
53,520 KB
testcase_63 AC 1,193 ms
164,144 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