結果

問題 No.2419 MMA文字列2
ユーザー Kyoro IDKyoro ID
提出日時 2023-08-12 14:52:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 135,316 KB
最終ジャッジ日時 2024-11-19 21:59:38
合計ジャッジ時間 7,775 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,296 KB
testcase_01 AC 76 ms
71,296 KB
testcase_02 AC 76 ms
71,552 KB
testcase_03 AC 94 ms
78,848 KB
testcase_04 AC 85 ms
74,624 KB
testcase_05 AC 75 ms
71,296 KB
testcase_06 AC 74 ms
71,424 KB
testcase_07 AC 75 ms
71,424 KB
testcase_08 AC 75 ms
71,168 KB
testcase_09 AC 76 ms
71,424 KB
testcase_10 AC 76 ms
71,552 KB
testcase_11 AC 83 ms
75,260 KB
testcase_12 AC 171 ms
91,776 KB
testcase_13 AC 106 ms
79,232 KB
testcase_14 AC 226 ms
103,136 KB
testcase_15 AC 175 ms
94,056 KB
testcase_16 AC 233 ms
104,320 KB
testcase_17 AC 139 ms
86,784 KB
testcase_18 AC 239 ms
105,472 KB
testcase_19 AC 261 ms
106,240 KB
testcase_20 AC 148 ms
87,552 KB
testcase_21 AC 137 ms
84,864 KB
testcase_22 AC 391 ms
135,316 KB
testcase_23 AC 388 ms
135,268 KB
testcase_24 AC 369 ms
135,300 KB
testcase_25 AC 386 ms
135,316 KB
testcase_26 AC 127 ms
85,888 KB
testcase_27 AC 358 ms
135,168 KB
testcase_28 AC 396 ms
135,040 KB
testcase_29 AC 394 ms
135,296 KB
testcase_30 AC 397 ms
135,168 KB
testcase_31 AC 416 ms
135,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import logging
import math
input = sys.stdin.readline
logger = logging.getLogger(__name__)


def read():
    S = input().strip()
    return S,


def nC2(n):
    return n * (n-1) // 2


def solve(S):
    N = len(S)
    count = [[0 for j in range(26)] for i in range(N)]
    for i in range(N):
        s = ord(S[i]) - ord('A')
        for j in range(26):
            count[i][j] = count[i-1][j]
        count[i][s] += 1
    
    ans = 0
    for i in range(1, N):
        s = ord(S[i]) - ord('A')
        for j in range(26):
            if j == s:
                continue
            if count[i-1][j] >= 2:
                ans += nC2(count[i-1][j])
    return ans


if __name__ == "__main__":
    inputs = read()
    outputs = solve(*inputs)
    if outputs is not None:
        print("%s" % str(outputs))
0