結果

問題 No.2529 Treasure Hunter
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-11-04 12:09:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 76,396 KB
最終ジャッジ日時 2024-09-25 21:58:57
合計ジャッジ時間 3,356 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,824 KB
testcase_01 AC 132 ms
76,396 KB
testcase_02 AC 80 ms
76,032 KB
testcase_03 AC 81 ms
75,776 KB
testcase_04 AC 80 ms
75,848 KB
testcase_05 AC 82 ms
75,648 KB
testcase_06 AC 79 ms
75,776 KB
testcase_07 AC 88 ms
75,776 KB
testcase_08 AC 85 ms
75,648 KB
testcase_09 AC 70 ms
75,648 KB
testcase_10 AC 81 ms
76,032 KB
testcase_11 AC 81 ms
75,776 KB
testcase_12 AC 124 ms
75,648 KB
testcase_13 AC 127 ms
75,904 KB
testcase_14 AC 120 ms
75,776 KB
testcase_15 AC 124 ms
76,288 KB
testcase_16 AC 122 ms
75,648 KB
testcase_17 AC 127 ms
75,776 KB
testcase_18 AC 124 ms
75,648 KB
testcase_19 AC 121 ms
76,032 KB
testcase_20 AC 118 ms
75,912 KB
testcase_21 AC 124 ms
76,288 KB
testcase_22 AC 128 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353

def solve():
    n,m = map(int,input().split())

    dp = [1,0,0]

    for i in range(m):

        ndp = [0]*3

        for bi in range(3):

            rest = n-bi
            if rest < 0:
                continue

            ndp[0] += dp[bi]
            ndp[0] %= mod

            if rest == 0:
                continue

            ndp[1] += dp[bi] * rest
            ndp[1] %= mod

            if rest == 1 or n < 4:
                continue

            ndp[2] += (rest*(rest-1)//2 - (n-2*bi)) * dp[bi]
            ndp[2] %= mod

        dp = ndp

    return sum(dp)%mod
t = int(input())
for _ in range(t):
    print(solve())
0