結果

問題 No.2419 MMA文字列2
ユーザー sepa38sepa38
提出日時 2023-07-15 14:12:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 378 bytes
コンパイル時間 973 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 587,968 KB
最終ジャッジ日時 2024-09-16 23:01:38
合計ジャッジ時間 25,844 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,160 KB
testcase_01 AC 47 ms
59,800 KB
testcase_02 AC 45 ms
60,988 KB
testcase_03 AC 47 ms
62,160 KB
testcase_04 AC 46 ms
60,940 KB
testcase_05 AC 43 ms
52,616 KB
testcase_06 AC 46 ms
58,544 KB
testcase_07 AC 39 ms
52,492 KB
testcase_08 AC 43 ms
58,780 KB
testcase_09 AC 38 ms
52,500 KB
testcase_10 AC 45 ms
60,412 KB
testcase_11 AC 46 ms
60,728 KB
testcase_12 AC 331 ms
190,196 KB
testcase_13 AC 93 ms
86,296 KB
testcase_14 AC 692 ms
295,632 KB
testcase_15 AC 370 ms
210,964 KB
testcase_16 AC 737 ms
306,312 KB
testcase_17 AC 221 ms
144,328 KB
testcase_18 AC 765 ms
316,468 KB
testcase_19 AC 779 ms
324,048 KB
testcase_20 AC 246 ms
153,520 KB
testcase_21 AC 191 ms
130,176 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 AC 207 ms
137,412 KB
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = list(map(lambda c: ord(c)-65, input()))
n = len(s)
dp = [[[0, 0, 0] for _ in range(26)] for _ in range(n+1)]
for i in range(n):
  c = s[i]
  for j in range(26):
    for k in range(3):
      dp[i+1][j][k] += dp[i][j][k]
    dp[i+1][c][2] += dp[i][j][1] * (c != j)
  dp[i+1][c][0] += 1
  dp[i+1][c][1] += dp[i][c][0]
ans = 0
for i in range(26):
  ans += dp[n][i][2]
print(ans)
0