結果

問題 No.1967 Sugoroku Optimization
ユーザー titiatitia
提出日時 2022-10-05 03:28:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,985 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 109,476 KB
最終ジャッジ日時 2024-06-09 20:42:16
合計ジャッジ時間 48,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,875 ms
108,856 KB
testcase_01 AC 1,906 ms
108,908 KB
testcase_02 AC 1,899 ms
109,012 KB
testcase_03 AC 1,873 ms
108,884 KB
testcase_04 AC 1,902 ms
108,676 KB
testcase_05 AC 1,881 ms
108,992 KB
testcase_06 AC 1,863 ms
108,812 KB
testcase_07 AC 1,858 ms
108,668 KB
testcase_08 AC 1,874 ms
108,984 KB
testcase_09 AC 1,871 ms
108,928 KB
testcase_10 AC 1,862 ms
109,476 KB
testcase_11 AC 1,879 ms
108,864 KB
testcase_12 AC 1,873 ms
108,860 KB
testcase_13 AC 1,894 ms
108,840 KB
testcase_14 AC 1,894 ms
108,872 KB
testcase_15 AC 1,985 ms
108,984 KB
testcase_16 AC 1,926 ms
108,892 KB
testcase_17 AC 1,912 ms
108,964 KB
testcase_18 AC 1,862 ms
108,868 KB
testcase_19 AC 1,892 ms
109,216 KB
testcase_20 AC 1,882 ms
108,808 KB
testcase_21 AC 1,884 ms
108,880 KB
testcase_22 AC 1,869 ms
108,680 KB
testcase_23 AC 1,869 ms
108,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353

N,K=map(int,input().split())

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

for i in range(2020):
    for j in range(2020):
        if j<=i:
            DP[i][j]=1

for i in range(1,2020):
    S=[0]
    for j in range(2020):
        S.append((S[-1]+DP[i-1][j])%mod)

    for j in range(i+1,2020):
        DP[i][j]=S[j]*pow(j,mod-2,mod)%mod

print((DP[K][N])%mod)
0