結果

問題 No.2419 MMA文字列2
ユーザー dmasuprodmasupro
提出日時 2023-08-14 20:55:35
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 436 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 490,680 KB
最終ジャッジ日時 2024-11-22 21:51:00
合計ジャッジ時間 18,123 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 46 ms
60,288 KB
testcase_04 AC 47 ms
59,520 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 429 ms
168,832 KB
testcase_13 AC 127 ms
89,856 KB
testcase_14 AC 751 ms
253,624 KB
testcase_15 AC 490 ms
185,136 KB
testcase_16 AC 807 ms
261,644 KB
testcase_17 AC 273 ms
127,036 KB
testcase_18 AC 875 ms
270,588 KB
testcase_19 AC 962 ms
276,772 KB
testcase_20 AC 311 ms
136,872 KB
testcase_21 AC 236 ms
115,840 KB
testcase_22 AC 366 ms
170,040 KB
testcase_23 AC 365 ms
170,076 KB
testcase_24 AC 356 ms
160,836 KB
testcase_25 AC 326 ms
160,628 KB
testcase_26 AC 74 ms
81,152 KB
testcase_27 AC 243 ms
148,272 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
alpha_set = set(list(S))
A = [{s:0 for s in alpha_set} for _ in range(len(S)+1)]
for i, s in enumerate(S):
    i += 1
    for key in alpha_set:
        A[i][key] += A[i-1][key] 
    A[i][s] += 1 
# print(A[-1])
ans = 0
for i in  range(len(S)):
    s = S[i]
    for key in A[i]:
        if s == key:
            continue
        ans += A[i][key]*(A[i][key]-1)//2
        # print(s,key, A[i][key]*(A[i][key]-1)//2)
print(ans)
0