結果

問題 No.2846 Birthday Cake
ユーザー 👑 rin204rin204
提出日時 2024-08-23 21:59:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,070 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 352,672 KB
最終ジャッジ日時 2024-08-23 22:00:08
合計ジャッジ時間 11,939 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,724 KB
testcase_01 AC 53 ms
65,640 KB
testcase_02 AC 616 ms
351,188 KB
testcase_03 AC 41 ms
53,116 KB
testcase_04 AC 40 ms
52,672 KB
testcase_05 AC 662 ms
352,120 KB
testcase_06 WA -
testcase_07 AC 648 ms
352,672 KB
testcase_08 WA -
testcase_09 AC 434 ms
350,356 KB
testcase_10 AC 360 ms
349,884 KB
testcase_11 AC 329 ms
349,844 KB
testcase_12 AC 531 ms
329,184 KB
testcase_13 AC 486 ms
330,100 KB
testcase_14 AC 41 ms
53,004 KB
testcase_15 AC 41 ms
52,544 KB
testcase_16 AC 41 ms
52,556 KB
testcase_17 AC 41 ms
53,204 KB
testcase_18 AC 40 ms
52,632 KB
testcase_19 AC 43 ms
54,892 KB
testcase_20 AC 381 ms
271,192 KB
testcase_21 AC 49 ms
52,252 KB
testcase_22 AC 549 ms
238,932 KB
testcase_23 AC 538 ms
332,584 KB
testcase_24 AC 335 ms
328,756 KB
testcase_25 AC 39 ms
53,068 KB
testcase_26 AC 163 ms
132,336 KB
testcase_27 AC 186 ms
202,412 KB
testcase_28 AC 41 ms
52,608 KB
testcase_29 AC 40 ms
53,568 KB
testcase_30 AC 40 ms
53,340 KB
testcase_31 AC 383 ms
236,816 KB
testcase_32 AC 305 ms
288,524 KB
testcase_33 AC 311 ms
328,368 KB
testcase_34 AC 236 ms
251,236 KB
testcase_35 WA -
testcase_36 AC 502 ms
309,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import lcm

k, n = map(int, input().split())
if n == k or k == 1:
    print(1)
    exit()
nCk = [[0] * (n + 1) for _ in range(n + 1)]
nCk[0][0] = 1
for i in range(1, n + 1):
    nCk[i][0] = 1
    for j in range(1, n + 1):
        nCk[i][j] = nCk[i - 1][j - 1] + nCk[i - 1][j]

ng = [False] * 25
ng[13] = True
ng[17] = True
ng[19] = True
ng[23] = True

lc = 1
for i in range(1, n + 1):
    if ng[i]:
        continue
    lc = lcm(lc, i)

dp = [[-1] * (lc + 1) for _ in range(n * (n + 1) + n + 1)]


def dfs(t, x, tot):
    if tot == lc:
        global ans
        if x == 0:
            return 1
        return 0
    if t == 0:
        return 0

    if ng[t]:
        return dfs(t - 1, x, tot)

    if tot + (lc // t) * x > lc:
        return 0

    if dp[t * (n + 1) + x][tot] != -1:
        return dp[t * (n + 1) + x][tot]

    ret = 0
    for j in range(x + 1):
        ntot = tot + (lc // t) * j
        if ntot <= lc:
            ret += dfs(t - 1, x - j, ntot) * nCk[x][j]

    dp[t * (n + 1) + x][tot] = ret
    return ret


ans = dfs(n, k, 0)
print(ans)
0