結果

問題 No.2419 MMA文字列2
ユーザー lloyzlloyz
提出日時 2023-08-23 00:46:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 139,596 KB
最終ジャッジ日時 2024-05-10 06:14:05
合計ジャッジ時間 6,172 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 49 ms
60,032 KB
testcase_04 AC 46 ms
58,496 KB
testcase_05 AC 40 ms
51,584 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 41 ms
52,224 KB
testcase_11 AC 48 ms
59,008 KB
testcase_12 AC 113 ms
89,088 KB
testcase_13 AC 63 ms
71,040 KB
testcase_14 AC 155 ms
102,924 KB
testcase_15 AC 118 ms
89,344 KB
testcase_16 AC 168 ms
104,352 KB
testcase_17 AC 88 ms
81,408 KB
testcase_18 AC 165 ms
105,384 KB
testcase_19 AC 168 ms
105,608 KB
testcase_20 AC 89 ms
81,280 KB
testcase_21 AC 82 ms
80,768 KB
testcase_22 AC 270 ms
139,596 KB
testcase_23 AC 284 ms
139,216 KB
testcase_24 AC 269 ms
139,208 KB
testcase_25 AC 278 ms
139,332 KB
testcase_26 AC 89 ms
81,024 KB
testcase_27 AC 265 ms
139,340 KB
testcase_28 AC 274 ms
139,592 KB
testcase_29 AC 272 ms
139,468 KB
testcase_30 AC 272 ms
139,460 KB
testcase_31 AC 270 ms
139,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())

n = len(S)
DP = [[0 for _ in range(26)] for _ in range(n + 1)]
ans = 0
for i in range(n):
    idx = ord(S[i]) - ord('A')
    for j in range(26):
        if j == idx:
            DP[i + 1][j] = DP[i][j] + 1
        else:
            DP[i + 1][j] = DP[i][j]
    for j in range(26):
        if j == idx:
            continue
        ans += DP[i][j] * (DP[i][j] - 1) // 2
print(ans)
0