結果

問題 No.2419 MMA文字列2
ユーザー SuzuxSuzux
提出日時 2023-08-12 14:24:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 185,472 KB
最終ジャッジ日時 2024-11-19 19:15:27
合計ジャッジ時間 5,394 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 46 ms
59,136 KB
testcase_04 AC 46 ms
58,368 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 40 ms
51,584 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 42 ms
51,456 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 47 ms
58,880 KB
testcase_12 AC 101 ms
88,448 KB
testcase_13 AC 60 ms
65,792 KB
testcase_14 AC 138 ms
106,880 KB
testcase_15 AC 109 ms
90,112 KB
testcase_16 AC 162 ms
124,544 KB
testcase_17 AC 85 ms
83,328 KB
testcase_18 AC 162 ms
124,544 KB
testcase_19 AC 174 ms
124,800 KB
testcase_20 AC 90 ms
84,352 KB
testcase_21 AC 83 ms
81,664 KB
testcase_22 AC 259 ms
167,680 KB
testcase_23 AC 261 ms
167,424 KB
testcase_24 AC 281 ms
185,344 KB
testcase_25 AC 284 ms
185,472 KB
testcase_26 AC 78 ms
82,560 KB
testcase_27 AC 252 ms
169,984 KB
testcase_28 AC 273 ms
182,016 KB
testcase_29 AC 277 ms
181,504 KB
testcase_30 AC 277 ms
181,760 KB
testcase_31 AC 264 ms
168,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)
dp = [[0] * 26 for _ in range(n)]

# print(ord("a"), ord("A"))

dp[0][ord(s[0])-65] += 1
dp[1] = dp[0].copy()
dp[1][ord(s[1])-65] += 1

ans = 0
for i in range(2, n):
    dp[i] = dp[i-1].copy()
    dp[i][ord(s[i])-65] += 1
    dpi = dp[i]
    ordi = ord(s[i])-65
    for j in range(26):
        if dpi[j] >= 2 and ordi != j:
            ans += dpi[j]*(dpi[j]-1)//2
# print(dp)
print(ans)

0