結果

問題 No.2419 MMA文字列2
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-25 06:46:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,632 KB
最終ジャッジ日時 2024-06-06 05:15:48
合計ジャッジ時間 4,210 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,296 KB
testcase_01 AC 43 ms
55,552 KB
testcase_02 AC 42 ms
55,424 KB
testcase_03 AC 47 ms
62,336 KB
testcase_04 AC 45 ms
62,336 KB
testcase_05 AC 41 ms
55,040 KB
testcase_06 AC 41 ms
55,168 KB
testcase_07 AC 44 ms
54,912 KB
testcase_08 AC 41 ms
55,296 KB
testcase_09 AC 45 ms
55,168 KB
testcase_10 AC 46 ms
55,168 KB
testcase_11 AC 46 ms
61,952 KB
testcase_12 AC 66 ms
68,096 KB
testcase_13 AC 53 ms
64,512 KB
testcase_14 AC 79 ms
73,344 KB
testcase_15 AC 68 ms
69,504 KB
testcase_16 AC 82 ms
73,344 KB
testcase_17 AC 60 ms
66,304 KB
testcase_18 AC 83 ms
73,728 KB
testcase_19 AC 83 ms
74,496 KB
testcase_20 AC 60 ms
66,816 KB
testcase_21 AC 56 ms
65,536 KB
testcase_22 AC 123 ms
82,632 KB
testcase_23 AC 133 ms
82,264 KB
testcase_24 AC 132 ms
82,296 KB
testcase_25 AC 124 ms
82,432 KB
testcase_26 AC 58 ms
65,408 KB
testcase_27 AC 119 ms
82,180 KB
testcase_28 AC 124 ms
82,276 KB
testcase_29 AC 130 ms
82,304 KB
testcase_30 AC 126 ms
82,432 KB
testcase_31 AC 125 ms
82,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

S = list(input())[:-1]
S = [ord(s)-ord('A') for s in S]
N = len(S)
ans = 0
dp = [0]*26
for i in range(N):
    s = S[i]
    dp[s] += 1
    for j in range(26):
        if j==s:
            continue
        ans += dp[j]*(dp[j]-1)//2
print(ans)
0