結果

問題 No.2846 Birthday Cake
ユーザー detteiuudetteiuu
提出日時 2024-08-23 23:02:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,928 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 79,332 KB
最終ジャッジ日時 2024-08-23 23:03:12
合計ジャッジ時間 20,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,596 KB
testcase_01 AC 35 ms
53,212 KB
testcase_02 AC 895 ms
77,460 KB
testcase_03 AC 38 ms
53,144 KB
testcase_04 AC 37 ms
53,188 KB
testcase_05 AC 1,225 ms
77,760 KB
testcase_06 AC 1,470 ms
78,100 KB
testcase_07 AC 1,632 ms
78,584 KB
testcase_08 AC 1,821 ms
79,064 KB
testcase_09 AC 1,825 ms
79,012 KB
testcase_10 AC 1,928 ms
78,956 KB
testcase_11 AC 1,920 ms
79,332 KB
testcase_12 AC 393 ms
76,312 KB
testcase_13 AC 513 ms
76,344 KB
testcase_14 AC 51 ms
64,804 KB
testcase_15 AC 64 ms
75,840 KB
testcase_16 AC 83 ms
75,824 KB
testcase_17 AC 583 ms
77,068 KB
testcase_18 AC 1,863 ms
78,800 KB
testcase_19 AC 36 ms
52,960 KB
testcase_20 AC 48 ms
66,928 KB
testcase_21 AC 35 ms
52,712 KB
testcase_22 AC 61 ms
75,824 KB
testcase_23 AC 61 ms
75,836 KB
testcase_24 AC 547 ms
76,740 KB
testcase_25 AC 36 ms
53,992 KB
testcase_26 AC 60 ms
76,056 KB
testcase_27 AC 64 ms
76,076 KB
testcase_28 AC 34 ms
53,124 KB
testcase_29 AC 63 ms
76,452 KB
testcase_30 AC 37 ms
53,908 KB
testcase_31 AC 55 ms
69,844 KB
testcase_32 AC 343 ms
75,980 KB
testcase_33 AC 563 ms
76,628 KB
testcase_34 AC 78 ms
75,760 KB
testcase_35 AC 75 ms
76,052 KB
testcase_36 AC 519 ms
76,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
import pypyjit
pypyjit.set_param('max_unroll_recursion=-1')
from math import lcm

K, N = map(int, input().split())

LCM = [1]
for i in range(2, 25):
    LCM.append(lcm(LCM[-1], i))
L = LCM[-1]
P = [1]
for i in range(2, 25):
    P.append(P[-1]*i)

def func(n, R, c, a):
    if n == 0:
        return a
    ans = 0
    for i in range(min(n+1, c+1)):
        r = R-L//n*i
        if r < 0:
            break
        if n >= 2 and r%(L//LCM[n-2]) == 0 or n == 1 and r == 0 and c == i:
            cnt[n-1] += i
            ans += func(n-1, r, c-i, a//P[i-1] if i >= 1 else a)
            cnt[n-1] -= i
    return ans

cnt = [0]*N
print(func(N, L, K, P[K-1]))
0