結果

問題 No.1532 Different Products
ユーザー convexineqconvexineq
提出日時 2021-06-04 22:58:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,158 ms / 4,000 ms
コード長 240 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 168,540 KB
最終ジャッジ日時 2024-11-20 06:14:52
合計ジャッジ時間 38,756 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,504 KB
testcase_01 AC 166 ms
88,760 KB
testcase_02 AC 44 ms
53,504 KB
testcase_03 AC 44 ms
53,248 KB
testcase_04 AC 44 ms
53,376 KB
testcase_05 AC 45 ms
53,504 KB
testcase_06 AC 44 ms
54,016 KB
testcase_07 AC 56 ms
61,440 KB
testcase_08 AC 52 ms
62,580 KB
testcase_09 AC 71 ms
73,472 KB
testcase_10 AC 174 ms
91,216 KB
testcase_11 AC 136 ms
87,372 KB
testcase_12 AC 434 ms
117,336 KB
testcase_13 AC 205 ms
95,800 KB
testcase_14 AC 879 ms
147,936 KB
testcase_15 AC 54 ms
63,104 KB
testcase_16 AC 218 ms
90,812 KB
testcase_17 AC 145 ms
87,168 KB
testcase_18 AC 103 ms
87,296 KB
testcase_19 AC 398 ms
119,284 KB
testcase_20 AC 888 ms
145,628 KB
testcase_21 AC 291 ms
93,240 KB
testcase_22 AC 235 ms
93,992 KB
testcase_23 AC 120 ms
87,880 KB
testcase_24 AC 803 ms
141,044 KB
testcase_25 AC 428 ms
119,304 KB
testcase_26 AC 79 ms
77,184 KB
testcase_27 AC 416 ms
97,684 KB
testcase_28 AC 278 ms
92,592 KB
testcase_29 AC 278 ms
91,776 KB
testcase_30 AC 541 ms
125,560 KB
testcase_31 AC 552 ms
124,252 KB
testcase_32 AC 672 ms
129,208 KB
testcase_33 AC 523 ms
114,188 KB
testcase_34 AC 757 ms
144,472 KB
testcase_35 AC 645 ms
131,860 KB
testcase_36 AC 764 ms
138,520 KB
testcase_37 AC 187 ms
87,168 KB
testcase_38 AC 816 ms
144,340 KB
testcase_39 AC 723 ms
135,272 KB
testcase_40 AC 739 ms
134,440 KB
testcase_41 AC 1,045 ms
161,292 KB
testcase_42 AC 966 ms
150,808 KB
testcase_43 AC 1,033 ms
152,512 KB
testcase_44 AC 1,077 ms
164,456 KB
testcase_45 AC 1,158 ms
164,152 KB
testcase_46 AC 1,048 ms
164,572 KB
testcase_47 AC 1,074 ms
166,204 KB
testcase_48 AC 1,046 ms
163,600 KB
testcase_49 AC 1,113 ms
161,632 KB
testcase_50 AC 1,066 ms
164,408 KB
testcase_51 AC 1,137 ms
168,540 KB
testcase_52 AC 1,078 ms
164,444 KB
testcase_53 AC 1,021 ms
165,316 KB
testcase_54 AC 1,108 ms
164,444 KB
testcase_55 AC 1,070 ms
163,892 KB
testcase_56 AC 1,110 ms
164,300 KB
testcase_57 AC 1,123 ms
166,228 KB
testcase_58 AC 1,078 ms
164,120 KB
testcase_59 AC 1,070 ms
156,120 KB
testcase_60 AC 1,088 ms
164,576 KB
testcase_61 AC 43 ms
53,504 KB
testcase_62 AC 44 ms
52,992 KB
testcase_63 AC 1,066 ms
163,764 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