結果

問題 No.2846 Birthday Cake
ユーザー 👑 rin204rin204
提出日時 2024-08-23 21:58:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,174 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 352,244 KB
最終ジャッジ日時 2024-08-23 21:58:40
合計ジャッジ時間 10,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,492 KB
testcase_01 AC 44 ms
65,092 KB
testcase_02 AC 485 ms
350,736 KB
testcase_03 AC 35 ms
54,324 KB
testcase_04 AC 252 ms
327,452 KB
testcase_05 AC 439 ms
349,360 KB
testcase_06 WA -
testcase_07 AC 462 ms
351,500 KB
testcase_08 WA -
testcase_09 AC 369 ms
349,640 KB
testcase_10 AC 408 ms
352,244 KB
testcase_11 AC 302 ms
349,392 KB
testcase_12 AC 428 ms
328,804 KB
testcase_13 AC 400 ms
329,568 KB
testcase_14 AC 35 ms
52,252 KB
testcase_15 AC 36 ms
53,052 KB
testcase_16 AC 35 ms
54,460 KB
testcase_17 AC 34 ms
53,892 KB
testcase_18 AC 35 ms
52,396 KB
testcase_19 AC 35 ms
54,336 KB
testcase_20 AC 320 ms
270,800 KB
testcase_21 AC 176 ms
246,188 KB
testcase_22 AC 423 ms
238,644 KB
testcase_23 AC 478 ms
332,204 KB
testcase_24 AC 298 ms
328,392 KB
testcase_25 AC 33 ms
53,676 KB
testcase_26 AC 146 ms
132,048 KB
testcase_27 AC 160 ms
202,256 KB
testcase_28 AC 33 ms
53,760 KB
testcase_29 AC 32 ms
53,356 KB
testcase_30 AC 77 ms
108,692 KB
testcase_31 AC 380 ms
237,468 KB
testcase_32 AC 296 ms
288,716 KB
testcase_33 AC 271 ms
328,168 KB
testcase_34 AC 212 ms
251,236 KB
testcase_35 WA -
testcase_36 AC 407 ms
308,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import lcm

k, n = map(int, input().split())
if n == k:
    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
isprime = [False] * 26
isprime[2] = True
isprime[3] = True
isprime[5] = True
isprime[7] = True
isprime[11] = 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 tot + (lc // t) * x > lc:
        return 0

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

    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