結果

問題 No.2763 Macaron Gift Box
ユーザー rlangevinrlangevin
提出日時 2024-05-17 22:59:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 700 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 168,736 KB
最終ジャッジ日時 2024-05-17 22:59:34
合計ジャッジ時間 5,312 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
62,660 KB
testcase_01 AC 40 ms
54,920 KB
testcase_02 AC 44 ms
55,312 KB
testcase_03 AC 40 ms
54,436 KB
testcase_04 AC 39 ms
54,856 KB
testcase_05 AC 39 ms
54,224 KB
testcase_06 AC 38 ms
53,936 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

N, K = map(int, input().split())
Q = deque()
for i in range(1, N + 1):
    L = defaultdict(int)
    cnt = 1
    for j in range(0, N + 1, i):
        if cnt == K + 2:
            break
        L[j] = 1
        cnt += 1        
    Q.append(L)
    
mod = 998244353
def merge(x, y):
    new = defaultdict(int)
    for kx, cx in x.items():
        for ky, cy in y.items():
            if kx + ky > N:
                continue
            new[kx + ky] += (cx * cy) % mod
    return new    

while len(Q) >= 2:
    a = Q.popleft()
    b = Q.popleft()
    c = merge(a, b)
    Q.append(c)
    
ans = [0] * (N + 1)
for k, v in Q[0].items():
    ans[k] = v % mod
    
print(*ans[1:])
0