結果

問題 No.1532 Different Products
ユーザー convexineqconvexineq
提出日時 2021-06-04 23:07:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,067 ms / 4,000 ms
コード長 244 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 154,168 KB
最終ジャッジ日時 2024-11-20 06:33:28
合計ジャッジ時間 36,218 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,376 KB
testcase_01 AC 162 ms
93,288 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 47 ms
53,760 KB
testcase_04 AC 45 ms
53,504 KB
testcase_05 AC 50 ms
53,248 KB
testcase_06 AC 44 ms
53,248 KB
testcase_07 AC 56 ms
61,184 KB
testcase_08 AC 54 ms
62,464 KB
testcase_09 AC 71 ms
73,856 KB
testcase_10 AC 157 ms
93,696 KB
testcase_11 AC 131 ms
87,296 KB
testcase_12 AC 455 ms
137,472 KB
testcase_13 AC 194 ms
104,376 KB
testcase_14 AC 832 ms
147,260 KB
testcase_15 AC 53 ms
63,232 KB
testcase_16 AC 203 ms
95,616 KB
testcase_17 AC 138 ms
87,040 KB
testcase_18 AC 105 ms
87,424 KB
testcase_19 AC 401 ms
140,024 KB
testcase_20 AC 842 ms
149,180 KB
testcase_21 AC 278 ms
98,844 KB
testcase_22 AC 209 ms
100,760 KB
testcase_23 AC 119 ms
87,936 KB
testcase_24 AC 769 ms
142,824 KB
testcase_25 AC 393 ms
126,096 KB
testcase_26 AC 81 ms
77,824 KB
testcase_27 AC 381 ms
101,820 KB
testcase_28 AC 264 ms
100,084 KB
testcase_29 AC 265 ms
97,664 KB
testcase_30 AC 529 ms
134,708 KB
testcase_31 AC 540 ms
145,700 KB
testcase_32 AC 606 ms
142,804 KB
testcase_33 AC 484 ms
123,720 KB
testcase_34 AC 763 ms
145,440 KB
testcase_35 AC 590 ms
144,400 KB
testcase_36 AC 749 ms
144,644 KB
testcase_37 AC 175 ms
92,532 KB
testcase_38 AC 816 ms
143,884 KB
testcase_39 AC 682 ms
144,964 KB
testcase_40 AC 745 ms
143,288 KB
testcase_41 AC 996 ms
149,944 KB
testcase_42 AC 918 ms
151,512 KB
testcase_43 AC 907 ms
148,428 KB
testcase_44 AC 956 ms
151,904 KB
testcase_45 AC 986 ms
150,768 KB
testcase_46 AC 967 ms
150,012 KB
testcase_47 AC 1,067 ms
151,016 KB
testcase_48 AC 997 ms
151,140 KB
testcase_49 AC 1,025 ms
151,460 KB
testcase_50 AC 1,026 ms
151,776 KB
testcase_51 AC 1,012 ms
150,792 KB
testcase_52 AC 976 ms
148,556 KB
testcase_53 AC 964 ms
153,092 KB
testcase_54 AC 987 ms
148,484 KB
testcase_55 AC 1,021 ms
150,648 KB
testcase_56 AC 1,010 ms
149,892 KB
testcase_57 AC 1,004 ms
146,340 KB
testcase_58 AC 971 ms
149,084 KB
testcase_59 AC 976 ms
150,396 KB
testcase_60 AC 976 ms
154,168 KB
testcase_61 AC 44 ms
53,248 KB
testcase_62 AC 44 ms
53,120 KB
testcase_63 AC 994 ms
150,660 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