結果

問題 No.2131 Concon Substrings (COuNt Version)
ユーザー tamatotamato
提出日時 2022-11-25 21:29:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,588 KB
実行使用メモリ 60,752 KB
最終ジャッジ日時 2024-10-02 04:02:19
合計ジャッジ時間 1,811 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
51,876 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 47 ms
60,032 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 49 ms
60,752 KB
testcase_08 AC 48 ms
59,904 KB
testcase_09 AC 48 ms
60,544 KB
testcase_10 AC 50 ms
60,416 KB
testcase_11 AC 47 ms
60,544 KB
testcase_12 AC 48 ms
60,416 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 47 ms
59,904 KB
testcase_15 AC 51 ms
59,904 KB
testcase_16 AC 40 ms
51,840 KB
testcase_17 AC 46 ms
60,160 KB
testcase_18 AC 47 ms
60,160 KB
testcase_19 AC 47 ms
59,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())

    dp = [0] * 3
    dp[0] = 1
    ans = 0
    for j in range(N):
        dp_new = [0] * 3
        for i in range(3):
            dp_new[i] = (dp_new[i] + (dp[i] * 25) % mod) % mod
            dp_new[(i + 1) % 3] = (dp_new[(i + 1) % 3] + dp[i]) % mod
            if i == 2:
                ans = (ans + (dp[i] * pow(26, N - j - 1, mod)) % mod) % mod
        dp = dp_new
    print(ans)


if __name__ == '__main__':
    main()
0