結果

問題 No.2419 MMA文字列2
ユーザー dmasuprodmasupro
提出日時 2023-08-14 20:53:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 431 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 346,344 KB
最終ジャッジ日時 2024-11-22 21:47:53
合計ジャッジ時間 30,121 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
15,872 KB
testcase_01 AC 31 ms
346,340 KB
testcase_02 AC 30 ms
15,744 KB
testcase_03 AC 31 ms
346,344 KB
testcase_04 AC 30 ms
15,872 KB
testcase_05 AC 33 ms
346,044 KB
testcase_06 AC 30 ms
15,744 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 29 ms
10,496 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 1,074 ms
79,000 KB
testcase_13 AC 184 ms
16,640 KB
testcase_14 TLE -
testcase_15 AC 1,316 ms
92,336 KB
testcase_16 TLE -
testcase_17 AC 667 ms
49,256 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 732 ms
55,148 KB
testcase_21 AC 557 ms
40,152 KB
testcase_22 AC 736 ms
68,712 KB
testcase_23 AC 738 ms
68,840 KB
testcase_24 AC 552 ms
62,568 KB
testcase_25 AC 552 ms
62,564 KB
testcase_26 AC 72 ms
15,968 KB
testcase_27 AC 362 ms
56,292 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 A[i]:
        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