結果

問題 No.2131 Concon Substrings (COuNt Version)
ユーザー ニックネームニックネーム
提出日時 2022-11-26 01:03:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 61,568 KB
最終ジャッジ日時 2024-10-02 07:09:35
合計ジャッジ時間 2,416 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 85 ms
60,928 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 43 ms
51,584 KB
testcase_07 AC 124 ms
61,568 KB
testcase_08 AC 70 ms
61,056 KB
testcase_09 AC 120 ms
61,184 KB
testcase_10 AC 120 ms
61,312 KB
testcase_11 AC 99 ms
61,056 KB
testcase_12 AC 97 ms
61,568 KB
testcase_13 AC 48 ms
58,880 KB
testcase_14 AC 74 ms
61,056 KB
testcase_15 AC 69 ms
61,056 KB
testcase_16 AC 47 ms
58,240 KB
testcase_17 AC 68 ms
61,440 KB
testcase_18 AC 69 ms
61,184 KB
testcase_19 AC 58 ms
59,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input()); mod = 998244353
dp = [1]+[0]*n; ans = 0
for _ in range(n):
    for j in range(n, -1, -1):
        dp[j] = dp[j]*25%mod
        if j: dp[j] = (dp[j]+dp[j-1])%mod
for i, v in enumerate(dp): ans = (ans+i//3*v)%mod
print(ans)
0