結果

問題 No.2419 MMA文字列2
ユーザー dmasuprodmasupro
提出日時 2023-08-14 20:48:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 441 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 400,852 KB
最終ジャッジ日時 2024-11-22 21:35:06
合計ジャッジ時間 61,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,136 KB
testcase_01 AC 43 ms
317,764 KB
testcase_02 AC 43 ms
59,392 KB
testcase_03 AC 52 ms
338,900 KB
testcase_04 AC 51 ms
66,688 KB
testcase_05 AC 43 ms
318,140 KB
testcase_06 AC 43 ms
58,496 KB
testcase_07 AC 41 ms
330,044 KB
testcase_08 AC 42 ms
58,624 KB
testcase_09 AC 45 ms
264,192 KB
testcase_10 AC 43 ms
59,008 KB
testcase_11 AC 43 ms
330,000 KB
testcase_12 TLE -
testcase_13 AC 1,833 ms
400,852 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
S = input()
A = [{s:0 for s in set(list(S))} 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