結果

問題 No.2846 Birthday Cake
ユーザー titiatitia
提出日時 2024-09-12 01:14:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 723 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 86,860 KB
最終ジャッジ日時 2024-09-12 01:14:49
合計ジャッジ時間 15,058 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,792 KB
testcase_01 AC 48 ms
62,844 KB
testcase_02 AC 498 ms
82,944 KB
testcase_03 AC 35 ms
52,688 KB
testcase_04 AC 85 ms
70,520 KB
testcase_05 AC 501 ms
83,276 KB
testcase_06 AC 511 ms
83,932 KB
testcase_07 AC 557 ms
84,152 KB
testcase_08 AC 567 ms
84,736 KB
testcase_09 AC 610 ms
85,072 KB
testcase_10 AC 611 ms
85,524 KB
testcase_11 AC 663 ms
86,380 KB
testcase_12 AC 434 ms
82,932 KB
testcase_13 AC 535 ms
84,144 KB
testcase_14 AC 175 ms
78,760 KB
testcase_15 AC 404 ms
83,708 KB
testcase_16 AC 475 ms
85,068 KB
testcase_17 AC 684 ms
86,020 KB
testcase_18 AC 723 ms
86,860 KB
testcase_19 AC 45 ms
61,944 KB
testcase_20 AC 210 ms
78,648 KB
testcase_21 AC 91 ms
68,456 KB
testcase_22 AC 250 ms
80,512 KB
testcase_23 AC 218 ms
78,856 KB
testcase_24 AC 586 ms
85,396 KB
testcase_25 AC 35 ms
53,528 KB
testcase_26 AC 163 ms
78,392 KB
testcase_27 AC 408 ms
82,392 KB
testcase_28 AC 37 ms
52,744 KB
testcase_29 AC 424 ms
83,680 KB
testcase_30 AC 59 ms
65,828 KB
testcase_31 AC 190 ms
78,912 KB
testcase_32 AC 496 ms
84,156 KB
testcase_33 AC 592 ms
85,296 KB
testcase_34 AC 377 ms
82,904 KB
testcase_35 AC 431 ms
84,080 KB
testcase_36 AC 536 ms
84,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from math import lcm

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

ANS=0
if K==13 or K==17 or K==19 or K==23:
    ANS+=1

LCM=1
for i in range(1,N+1):
    if i==13 or i==17 or i==19 or i==23:
        continue
    else:
        LCM=lcm(i,LCM)
DP=[[0]*(LCM+1) for i in range(K+1)]

DP[0][0]=1

for i in range(K+1):
    for j in range(LCM+1):
        for k in range(1,N+1):
            if k==13 or k==17 or k==19 or k==23:
                continue
            if i+1<K+1 and j+LCM//k<LCM+1:
                DP[i+1][j+LCM//k]+=DP[i][j]

print(ANS+DP[-1][-1])
0