結果

問題 No.1532 Different Products
ユーザー mkawa2mkawa2
提出日時 2023-10-05 09:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 630 ms / 4,000 ms
コード長 1,029 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 123,256 KB
最終ジャッジ日時 2024-07-26 14:59:07
合計ジャッジ時間 23,917 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,632 KB
testcase_01 AC 148 ms
87,808 KB
testcase_02 AC 48 ms
53,760 KB
testcase_03 AC 47 ms
53,888 KB
testcase_04 AC 48 ms
53,632 KB
testcase_05 AC 47 ms
53,888 KB
testcase_06 AC 50 ms
60,800 KB
testcase_07 AC 53 ms
61,952 KB
testcase_08 AC 55 ms
63,744 KB
testcase_09 AC 84 ms
73,856 KB
testcase_10 AC 168 ms
90,788 KB
testcase_11 AC 137 ms
86,636 KB
testcase_12 AC 346 ms
112,368 KB
testcase_13 AC 209 ms
101,240 KB
testcase_14 AC 496 ms
116,312 KB
testcase_15 AC 60 ms
64,256 KB
testcase_16 AC 163 ms
88,800 KB
testcase_17 AC 147 ms
85,760 KB
testcase_18 AC 109 ms
87,424 KB
testcase_19 AC 344 ms
113,400 KB
testcase_20 AC 514 ms
117,164 KB
testcase_21 AC 196 ms
89,028 KB
testcase_22 AC 212 ms
93,848 KB
testcase_23 AC 125 ms
87,808 KB
testcase_24 AC 505 ms
117,500 KB
testcase_25 AC 284 ms
106,504 KB
testcase_26 AC 75 ms
74,752 KB
testcase_27 AC 235 ms
91,244 KB
testcase_28 AC 198 ms
90,680 KB
testcase_29 AC 182 ms
89,984 KB
testcase_30 AC 305 ms
98,920 KB
testcase_31 AC 308 ms
101,064 KB
testcase_32 AC 355 ms
112,572 KB
testcase_33 AC 279 ms
97,276 KB
testcase_34 AC 426 ms
112,072 KB
testcase_35 AC 344 ms
108,796 KB
testcase_36 AC 427 ms
113,360 KB
testcase_37 AC 140 ms
83,420 KB
testcase_38 AC 442 ms
116,000 KB
testcase_39 AC 409 ms
114,172 KB
testcase_40 AC 435 ms
114,544 KB
testcase_41 AC 604 ms
123,256 KB
testcase_42 AC 517 ms
116,148 KB
testcase_43 AC 546 ms
116,048 KB
testcase_44 AC 615 ms
122,148 KB
testcase_45 AC 610 ms
121,712 KB
testcase_46 AC 597 ms
122,884 KB
testcase_47 AC 613 ms
122,492 KB
testcase_48 AC 624 ms
121,788 KB
testcase_49 AC 604 ms
121,972 KB
testcase_50 AC 610 ms
121,572 KB
testcase_51 AC 630 ms
121,600 KB
testcase_52 AC 622 ms
121,848 KB
testcase_53 AC 618 ms
122,352 KB
testcase_54 AC 599 ms
122,332 KB
testcase_55 AC 605 ms
119,812 KB
testcase_56 AC 585 ms
122,776 KB
testcase_57 AC 599 ms
122,088 KB
testcase_58 AC 586 ms
122,096 KB
testcase_59 AC 572 ms
120,392 KB
testcase_60 AC 606 ms
121,516 KB
testcase_61 AC 47 ms
54,144 KB
testcase_62 AC 45 ms
53,504 KB
testcase_63 AC 611 ms
121,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 63)
md = 10**9+7
# md = 998244353

from collections import Counter

N, K = LI()

if N == 1 or K == 1:
    print(1)
    exit()

dp=Counter()
dp[K]=1

for n in range(N,0,-1):
    pre=dp.copy()
    for k,c in pre.items():
        dp[k//n]+=c

ans=-1
for k,c in dp.items():
    if k:ans+=c

print(ans)
0