結果

問題 No.2846 Birthday Cake
ユーザー ShirotsumeShirotsume
提出日時 2024-08-23 23:11:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,004 ms / 2,000 ms
コード長 1,242 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 145,736 KB
最終ジャッジ日時 2024-08-23 23:12:06
合計ジャッジ時間 18,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
89,052 KB
testcase_01 AC 139 ms
88,988 KB
testcase_02 AC 795 ms
144,468 KB
testcase_03 AC 125 ms
88,968 KB
testcase_04 AC 131 ms
88,884 KB
testcase_05 AC 851 ms
144,340 KB
testcase_06 AC 878 ms
144,328 KB
testcase_07 AC 895 ms
145,096 KB
testcase_08 AC 949 ms
145,736 KB
testcase_09 AC 913 ms
145,620 KB
testcase_10 AC 939 ms
145,656 KB
testcase_11 AC 1,004 ms
145,620 KB
testcase_12 AC 769 ms
144,596 KB
testcase_13 AC 904 ms
144,980 KB
testcase_14 AC 144 ms
89,744 KB
testcase_15 AC 153 ms
89,620 KB
testcase_16 AC 184 ms
92,184 KB
testcase_17 AC 993 ms
145,616 KB
testcase_18 AC 979 ms
145,608 KB
testcase_19 AC 128 ms
88,900 KB
testcase_20 AC 145 ms
89,676 KB
testcase_21 AC 127 ms
89,060 KB
testcase_22 AC 150 ms
89,800 KB
testcase_23 AC 149 ms
89,836 KB
testcase_24 AC 908 ms
145,496 KB
testcase_25 AC 150 ms
88,924 KB
testcase_26 AC 150 ms
89,728 KB
testcase_27 AC 156 ms
89,696 KB
testcase_28 AC 152 ms
89,108 KB
testcase_29 AC 153 ms
89,612 KB
testcase_30 AC 132 ms
89,280 KB
testcase_31 AC 150 ms
89,744 KB
testcase_32 AC 283 ms
100,560 KB
testcase_33 AC 907 ms
145,484 KB
testcase_34 AC 189 ms
92,724 KB
testcase_35 AC 189 ms
92,240 KB
testcase_36 AC 323 ms
103,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
import sys, time, random
from collections import deque, Counter, defaultdict
def debug(*x):print('debug:',*x, file=sys.stderr)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
from fractions import Fraction
k, n = mi()

if n == 1:
    print(1)
    exit()

whole = 1

for i in range(1, n + 1):
    whole = whole * i // gcd(whole, i)

C = [0]

for i in range(1, n + 1):
    C.append(whole // i)
facs = [1] * (n + 1)
for i in range(1, n + 1):
    facs[i] = facs[i - 1] * i
    
n1 = n
dp = [Counter() for i in range(k + 1)]

dp[0][0] = 1

for i in range(1, k + 1):
    for j in range(1, n + 1, 2):
        f = C[j]
        for v in dp[i - 1]:
            if v + f <= whole:
                dp[i][v + f] += dp[i - 1][v]
dp2 = [Counter() for _ in range(k + 1)]

dp2[0][0] = 1

for i in range(1, k + 1):
    for j in range(2, n + 1, 2):
        f = C[j]
        for v in dp2[i - 1]:
            if v + f <= whole:
                dp2[i][v + f] += dp2[i - 1][v]
ans = 0            
for i in range(k + 1):
    for v, c in dp[i].items():
        ans += c * dp2[k - i][whole - v] * facs[k] // facs[i] // facs[k - i]

print(ans)
0