結果

問題 No.1532 Different Products
ユーザー convexineqconvexineq
提出日時 2021-06-04 22:58:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,203 ms / 4,000 ms
コード長 240 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 168,668 KB
最終ジャッジ日時 2024-04-30 11:27:31
合計ジャッジ時間 40,119 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,916 KB
testcase_01 AC 167 ms
89,164 KB
testcase_02 AC 43 ms
54,484 KB
testcase_03 AC 43 ms
53,596 KB
testcase_04 AC 42 ms
54,716 KB
testcase_05 AC 42 ms
54,532 KB
testcase_06 AC 44 ms
54,884 KB
testcase_07 AC 50 ms
62,528 KB
testcase_08 AC 54 ms
63,616 KB
testcase_09 AC 72 ms
74,024 KB
testcase_10 AC 180 ms
91,232 KB
testcase_11 AC 147 ms
87,220 KB
testcase_12 AC 485 ms
117,332 KB
testcase_13 AC 210 ms
95,752 KB
testcase_14 AC 976 ms
147,808 KB
testcase_15 AC 52 ms
64,552 KB
testcase_16 AC 219 ms
90,912 KB
testcase_17 AC 145 ms
87,452 KB
testcase_18 AC 105 ms
87,620 KB
testcase_19 AC 422 ms
119,296 KB
testcase_20 AC 899 ms
145,812 KB
testcase_21 AC 294 ms
93,152 KB
testcase_22 AC 241 ms
94,120 KB
testcase_23 AC 123 ms
88,052 KB
testcase_24 AC 838 ms
141,556 KB
testcase_25 AC 454 ms
119,784 KB
testcase_26 AC 76 ms
78,068 KB
testcase_27 AC 409 ms
97,940 KB
testcase_28 AC 288 ms
92,852 KB
testcase_29 AC 283 ms
92,156 KB
testcase_30 AC 569 ms
125,684 KB
testcase_31 AC 587 ms
124,256 KB
testcase_32 AC 689 ms
129,700 KB
testcase_33 AC 509 ms
114,316 KB
testcase_34 AC 806 ms
144,600 KB
testcase_35 AC 658 ms
132,244 KB
testcase_36 AC 829 ms
138,768 KB
testcase_37 AC 198 ms
87,120 KB
testcase_38 AC 825 ms
144,720 KB
testcase_39 AC 750 ms
134,944 KB
testcase_40 AC 765 ms
134,696 KB
testcase_41 AC 1,066 ms
161,296 KB
testcase_42 AC 973 ms
150,932 KB
testcase_43 AC 1,017 ms
153,028 KB
testcase_44 AC 1,089 ms
164,772 KB
testcase_45 AC 1,095 ms
164,276 KB
testcase_46 AC 1,055 ms
164,704 KB
testcase_47 AC 1,160 ms
166,076 KB
testcase_48 AC 1,075 ms
163,984 KB
testcase_49 AC 1,111 ms
161,892 KB
testcase_50 AC 1,103 ms
164,588 KB
testcase_51 AC 1,077 ms
168,668 KB
testcase_52 AC 1,160 ms
164,704 KB
testcase_53 AC 1,166 ms
165,824 KB
testcase_54 AC 1,146 ms
164,696 KB
testcase_55 AC 1,107 ms
163,896 KB
testcase_56 AC 1,155 ms
164,556 KB
testcase_57 AC 1,121 ms
166,868 KB
testcase_58 AC 1,136 ms
164,748 KB
testcase_59 AC 1,083 ms
156,124 KB
testcase_60 AC 1,203 ms
164,956 KB
testcase_61 AC 45 ms
54,920 KB
testcase_62 AC 45 ms
53,412 KB
testcase_63 AC 1,112 ms
163,836 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
dp[0] = 0
print(sum(dp.values())-1)
0