結果

問題 No.2419 MMA文字列2
ユーザー dmasuprodmasupro
提出日時 2023-08-12 15:29:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 347 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 402,176 KB
最終ジャッジ日時 2024-11-20 02:44:16
合計ジャッジ時間 60,935 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,432 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 43 ms
319,260 KB
testcase_06 WA -
testcase_07 AC 43 ms
329,900 KB
testcase_08 WA -
testcase_09 AC 46 ms
283,032 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 WA -
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]
    if A[i][s] >= 1:
        ans +=  A[i][s]*(len(S) - 1 - i )
print(ans)
0