結果

問題 No.2944 Sigma Partition Problem
ユーザー titiatitia
提出日時 2024-10-26 05:03:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,008 ms / 4,000 ms
コード長 465 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 184,416 KB
最終ジャッジ日時 2024-10-26 05:04:08
合計ジャッジ時間 28,470 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 977 ms
184,300 KB
testcase_01 AC 999 ms
184,024 KB
testcase_02 AC 1,003 ms
184,272 KB
testcase_03 AC 1,000 ms
184,344 KB
testcase_04 AC 1,004 ms
183,948 KB
testcase_05 AC 968 ms
184,284 KB
testcase_06 AC 952 ms
183,996 KB
testcase_07 AC 999 ms
184,124 KB
testcase_08 AC 992 ms
184,064 KB
testcase_09 AC 977 ms
184,288 KB
testcase_10 AC 974 ms
184,212 KB
testcase_11 AC 955 ms
184,416 KB
testcase_12 AC 993 ms
183,892 KB
testcase_13 AC 991 ms
184,272 KB
testcase_14 AC 1,001 ms
184,352 KB
testcase_15 AC 982 ms
183,912 KB
testcase_16 AC 959 ms
184,012 KB
testcase_17 AC 976 ms
184,052 KB
testcase_18 AC 987 ms
184,192 KB
testcase_19 AC 996 ms
183,988 KB
testcase_20 AC 968 ms
183,956 KB
testcase_21 AC 960 ms
183,944 KB
testcase_22 AC 999 ms
184,120 KB
testcase_23 AC 1,008 ms
184,188 KB
testcase_24 AC 978 ms
184,136 KB
testcase_25 AC 974 ms
184,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

DP=[[0]*4001 for i in range(4001)]

DP[1][1]=1

for i in range(1,4001):
    for j in range(1,4001):
        if i==1 and j==1:
            continue
        DP[i][j]=(DP[i-1][j-1]+DP[i-j][j])%mod

for i in range(1,4001):
    for j in range(1,4001):
        DP[i][j]=(DP[i][j]+DP[i][j-1])%mod

    
Q=int(input())
for tests in range(Q):
    L=list(map(int,input().split()))

    x,y=L[1],L[2]

    print(DP[x][y])
0