結果

問題 No.2131 Concon Substrings (COuNt Version)
ユーザー titiatitia
提出日時 2022-11-25 22:36:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 76,552 KB
最終ジャッジ日時 2024-10-02 05:13:23
合計ジャッジ時間 2,502 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,820 KB
testcase_01 AC 42 ms
52,280 KB
testcase_02 AC 39 ms
53,428 KB
testcase_03 AC 99 ms
75,816 KB
testcase_04 AC 39 ms
52,300 KB
testcase_05 AC 40 ms
52,432 KB
testcase_06 AC 42 ms
54,020 KB
testcase_07 AC 149 ms
76,340 KB
testcase_08 AC 82 ms
75,992 KB
testcase_09 AC 152 ms
76,552 KB
testcase_10 AC 149 ms
76,080 KB
testcase_11 AC 121 ms
76,064 KB
testcase_12 AC 117 ms
76,368 KB
testcase_13 AC 45 ms
61,360 KB
testcase_14 AC 82 ms
75,964 KB
testcase_15 AC 78 ms
75,884 KB
testcase_16 AC 45 ms
60,264 KB
testcase_17 AC 77 ms
76,228 KB
testcase_18 AC 76 ms
75,892 KB
testcase_19 AC 63 ms
75,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
mod=998244353

DP=[0]*(N+2)
DP[0]=1

for i in range(N):
    NDP=[0]*(N+2)
    for j in range(N+1):
        x=DP[j]
        NDP[j+1]+=x
        NDP[j]+=x*25

    DP=[ndp%mod for ndp in NDP]

ANS=0

for i in range(N+2):
    ANS+=DP[i]*(i//3)
    ANS%=mod

print(ANS)
0