結果

問題 No.2131 Concon Substrings (COuNt Version)
ユーザー とりゐとりゐ
提出日時 2022-11-25 21:28:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-10-02 04:00:26
合計ジャッジ時間 2,511 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,612 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 98 ms
76,032 KB
testcase_04 AC 38 ms
51,328 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 37 ms
52,056 KB
testcase_07 AC 147 ms
75,904 KB
testcase_08 AC 83 ms
75,808 KB
testcase_09 AC 150 ms
75,928 KB
testcase_10 AC 147 ms
75,928 KB
testcase_11 AC 120 ms
75,784 KB
testcase_12 AC 117 ms
75,820 KB
testcase_13 AC 44 ms
58,880 KB
testcase_14 AC 83 ms
75,736 KB
testcase_15 AC 79 ms
75,696 KB
testcase_16 AC 45 ms
58,624 KB
testcase_17 AC 75 ms
75,812 KB
testcase_18 AC 75 ms
75,756 KB
testcase_19 AC 61 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353

n=int(input())

dp=[0]*(n+1)
dp[0]=1
for i in range(n):
  ndp=[0]*(n+1)
  for j in range(n):
    ndp[j]+=dp[j]*25
    ndp[j+1]+=dp[j]
  dp=[i%mod for i in ndp]

ans=0
for i in range(n+1):
  ans+=dp[i]*(i//3)
print(ans%mod)
0