結果

問題 No.2529 Treasure Hunter
ユーザー timitimi
提出日時 2024-02-13 11:53:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 77,280 KB
最終ジャッジ日時 2024-09-28 18:20:38
合計ジャッジ時間 3,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
72,828 KB
testcase_01 AC 121 ms
77,280 KB
testcase_02 AC 91 ms
76,844 KB
testcase_03 AC 93 ms
76,432 KB
testcase_04 AC 93 ms
76,820 KB
testcase_05 AC 83 ms
76,024 KB
testcase_06 AC 84 ms
76,200 KB
testcase_07 AC 104 ms
77,084 KB
testcase_08 AC 86 ms
76,060 KB
testcase_09 AC 75 ms
75,936 KB
testcase_10 AC 94 ms
76,388 KB
testcase_11 AC 94 ms
76,420 KB
testcase_12 AC 147 ms
76,676 KB
testcase_13 AC 149 ms
76,688 KB
testcase_14 AC 153 ms
76,628 KB
testcase_15 AC 150 ms
76,604 KB
testcase_16 AC 147 ms
76,548 KB
testcase_17 AC 153 ms
77,120 KB
testcase_18 AC 148 ms
76,564 KB
testcase_19 AC 149 ms
77,016 KB
testcase_20 AC 146 ms
76,956 KB
testcase_21 AC 144 ms
76,760 KB
testcase_22 AC 151 ms
77,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
mod=998244353
for _ in range(T):
  N,M=map(int, input().split())
  dp=[1,N,max(0,N*(N-1)//2-N)]
  for i in range(M-1):
    ndp=[0]*3
    ndp[0]+=sum(dp)
    ndp[1]+=dp[0]*N+dp[1]*(N-1)+dp[2]*(N-2)
    ndp[2]+=dp[0]*max(0,N*(N-1)//2-N)
    ndp[2]+=dp[1]*max(0,(N-1)*(N-2)//2-(N-2))
    ndp[2]+=dp[2]*max(0,(N-2)*(N-3)//2-(N-4))
    dp=ndp
    for j in range(3):
      dp[j]%=mod 
  print(sum(dp)%mod)
0