結果

問題 No.2302 Carry X Times
ユーザー titiatitia
提出日時 2023-05-13 05:01:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 578 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-05-06 16:26:13
合計ジャッジ時間 10,325 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 271 ms
11,520 KB
testcase_01 AC 90 ms
10,880 KB
testcase_02 AC 96 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 557 ms
12,544 KB
testcase_11 AC 545 ms
12,416 KB
testcase_12 AC 564 ms
12,416 KB
testcase_13 AC 539 ms
12,544 KB
testcase_14 AC 533 ms
12,416 KB
testcase_15 AC 578 ms
12,416 KB
testcase_16 AC 566 ms
12,416 KB
testcase_17 AC 562 ms
12,416 KB
testcase_18 AC 547 ms
12,416 KB
testcase_19 AC 552 ms
12,416 KB
testcase_20 AC 548 ms
12,416 KB
testcase_21 AC 573 ms
12,544 KB
testcase_22 AC 547 ms
12,544 KB
testcase_23 AC 561 ms
12,416 KB
testcase_24 AC 570 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
from functools import lru_cache
@lru_cache(maxsize=None)
def calc(a,b,X,k):
    if a==0 and b==0:
        if X==0:
            return 1
        return 0
    ANS=0
    for i in range(10):
        for j in range(10):
            if i<=a and j<=b:
                if i+j+k>=10:
                    ANS+=calc((a-i)//10,(b-j)//10,X-1,1)
                else:
                    ANS+=calc((a-i)//10,(b-j)//10,X,0)
                ANS%=mod
    return ANS
T=int(input())
for tests in range(T):
    N,X=map(int,input().split())
    print(calc(N,N,X,0))
0