結果

問題 No.2846 Birthday Cake
ユーザー ニックネームニックネーム
提出日時 2024-08-23 22:59:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 72,412 KB
最終ジャッジ日時 2024-08-23 22:59:57
合計ジャッジ時間 9,500 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,572 KB
testcase_01 AC 68 ms
61,616 KB
testcase_02 AC 274 ms
67,264 KB
testcase_03 AC 41 ms
55,300 KB
testcase_04 AC 56 ms
59,804 KB
testcase_05 AC 306 ms
68,488 KB
testcase_06 AC 310 ms
68,596 KB
testcase_07 AC 324 ms
68,992 KB
testcase_08 AC 330 ms
69,592 KB
testcase_09 AC 376 ms
70,428 KB
testcase_10 AC 367 ms
71,084 KB
testcase_11 AC 382 ms
71,260 KB
testcase_12 AC 279 ms
68,100 KB
testcase_13 AC 304 ms
68,404 KB
testcase_14 AC 152 ms
64,860 KB
testcase_15 AC 235 ms
67,832 KB
testcase_16 AC 270 ms
68,784 KB
testcase_17 AC 405 ms
72,412 KB
testcase_18 AC 408 ms
71,916 KB
testcase_19 AC 62 ms
61,520 KB
testcase_20 AC 103 ms
62,708 KB
testcase_21 AC 51 ms
60,952 KB
testcase_22 AC 147 ms
64,580 KB
testcase_23 AC 124 ms
61,788 KB
testcase_24 AC 343 ms
70,384 KB
testcase_25 AC 42 ms
61,624 KB
testcase_26 AC 147 ms
65,096 KB
testcase_27 AC 190 ms
67,856 KB
testcase_28 AC 35 ms
55,304 KB
testcase_29 AC 228 ms
68,196 KB
testcase_30 AC 49 ms
59,204 KB
testcase_31 AC 111 ms
63,008 KB
testcase_32 AC 303 ms
69,056 KB
testcase_33 AC 326 ms
69,248 KB
testcase_34 AC 222 ms
67,244 KB
testcase_35 AC 235 ms
68,496 KB
testcase_36 AC 319 ms
68,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k,n = map(int,input().split())
m = 55440; s = {13,17,19,23}; dp = [1]+[0]*m
for _ in range(k):
    eq = [0]*(m+1)
    for v in range(1,n+1):
        if v in s: continue
        for i in range(m-m//v+1): eq[i+m//v] += dp[i]
    dp = eq
print(dp[m]+(k in s))
0