結果

問題 No.2846 Birthday Cake
ユーザー AyunaAyuna
提出日時 2024-07-15 19:02:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,097 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 86,696 KB
最終ジャッジ日時 2024-07-15 23:23:23
合計ジャッジ時間 21,001 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,064 KB
testcase_01 AC 50 ms
62,596 KB
testcase_02 AC 714 ms
83,256 KB
testcase_03 AC 38 ms
52,652 KB
testcase_04 AC 91 ms
64,688 KB
testcase_05 AC 752 ms
83,684 KB
testcase_06 AC 795 ms
84,044 KB
testcase_07 AC 840 ms
84,212 KB
testcase_08 AC 882 ms
84,660 KB
testcase_09 AC 928 ms
85,376 KB
testcase_10 AC 973 ms
85,792 KB
testcase_11 AC 1,015 ms
86,204 KB
testcase_12 AC 679 ms
82,892 KB
testcase_13 AC 809 ms
84,200 KB
testcase_14 AC 235 ms
78,836 KB
testcase_15 AC 598 ms
84,056 KB
testcase_16 AC 721 ms
84,948 KB
testcase_17 AC 1,016 ms
86,624 KB
testcase_18 AC 1,097 ms
86,696 KB
testcase_19 AC 46 ms
61,244 KB
testcase_20 AC 257 ms
75,840 KB
testcase_21 AC 88 ms
65,032 KB
testcase_22 AC 357 ms
80,172 KB
testcase_23 AC 303 ms
79,264 KB
testcase_24 AC 887 ms
85,028 KB
testcase_25 AC 37 ms
53,760 KB
testcase_26 AC 214 ms
78,580 KB
testcase_27 AC 534 ms
82,584 KB
testcase_28 AC 37 ms
54,096 KB
testcase_29 AC 602 ms
83,764 KB
testcase_30 AC 62 ms
62,864 KB
testcase_31 AC 256 ms
79,468 KB
testcase_32 AC 754 ms
84,068 KB
testcase_33 AC 888 ms
85,364 KB
testcase_34 AC 580 ms
82,984 KB
testcase_35 AC 648 ms
83,916 KB
testcase_36 AC 789 ms
84,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

k, n = map(int, input().split())
l = 1
for i in range(1, n + 1):
    if i != 13 and i != 17 and i != 19 and i != 23:
        l = l * i // math.gcd(l, i)

dp = [[0 for _ in range(l + 1)] for _ in range(k + 1)]
# dp[i][j] = (i人目までの取り分を決めたときにその総和がjであるような分け方)
dp[0][0] = 1
for i in range(k):
    for j in range(l + 1):
        for x in range(1, n + 1):
            if l % x != 0:
                continue
            cake = l // x
            if j + cake <= l:
                dp[i + 1][j + cake] += dp[i][j]

ans = dp[k][l]
if k == 13 or k == 17 or k == 19 or k == 23:
    ans += 1
print(ans)
0