結果

問題 No.2302 Carry X Times
ユーザー ShirotsumeShirotsume
提出日時 2023-04-03 01:40:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 922 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 79,440 KB
最終ジャッジ日時 2024-09-25 00:43:03
合計ジャッジ時間 6,352 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
76,836 KB
testcase_01 AC 99 ms
76,568 KB
testcase_02 AC 122 ms
77,256 KB
testcase_03 AC 42 ms
54,596 KB
testcase_04 AC 41 ms
53,708 KB
testcase_05 AC 56 ms
67,844 KB
testcase_06 AC 57 ms
66,620 KB
testcase_07 AC 57 ms
68,016 KB
testcase_08 AC 56 ms
66,260 KB
testcase_09 AC 60 ms
69,244 KB
testcase_10 AC 350 ms
79,224 KB
testcase_11 AC 328 ms
79,096 KB
testcase_12 AC 349 ms
79,440 KB
testcase_13 AC 306 ms
79,040 KB
testcase_14 AC 344 ms
79,160 KB
testcase_15 AC 239 ms
78,172 KB
testcase_16 AC 221 ms
77,616 KB
testcase_17 AC 331 ms
79,360 KB
testcase_18 AC 262 ms
78,712 KB
testcase_19 AC 272 ms
78,880 KB
testcase_20 AC 283 ms
78,484 KB
testcase_21 AC 300 ms
79,084 KB
testcase_22 AC 256 ms
78,084 KB
testcase_23 AC 285 ms
78,488 KB
testcase_24 AC 247 ms
78,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
d = {}
def f(na, nb, x, c):
    if (na, nb, x, c) in d:
        return d[na, nb, x, c]
    ans = 0
    if na == nb == 0:
        if x == 0:
            ans = 1
        else:
            ans = 0
    else:
        for a in range(min(na + 1, 10)):
            for b in range(min(nb + 1, 10)):
                if a + b + c < 10:
                    ans += f((na - a) // 10, (nb - b) // 10, x, 0)
                elif x > 0:
                    ans += f((na - a) // 10, (nb - b) // 10, x - 1, 1)
    d[na,nb,x,c] = ans % mod
    return d[na,nb,x,c]

def dsum(x):
    ans = 0
    while x > 0:
        ans += x % 10
        x //= 10
    return ans
for _ in range(ii()):
    n, x = mi()
    print(f(n, n, x, 0))
0