結果

問題 No.2419 MMA文字列2
ユーザー 👑 rin204rin204
提出日時 2024-09-22 15:49:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 73,004 KB
最終ジャッジ日時 2024-09-22 15:49:50
合計ジャッジ時間 3,193 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,488 KB
testcase_01 AC 36 ms
52,608 KB
testcase_02 AC 38 ms
52,708 KB
testcase_03 AC 37 ms
52,868 KB
testcase_04 AC 37 ms
51,824 KB
testcase_05 AC 36 ms
53,308 KB
testcase_06 AC 36 ms
52,748 KB
testcase_07 AC 37 ms
53,348 KB
testcase_08 AC 37 ms
52,536 KB
testcase_09 AC 37 ms
52,032 KB
testcase_10 AC 36 ms
52,124 KB
testcase_11 AC 37 ms
52,468 KB
testcase_12 AC 42 ms
62,424 KB
testcase_13 AC 41 ms
59,884 KB
testcase_14 AC 43 ms
64,156 KB
testcase_15 AC 42 ms
62,788 KB
testcase_16 AC 44 ms
64,828 KB
testcase_17 AC 41 ms
60,920 KB
testcase_18 AC 43 ms
64,912 KB
testcase_19 AC 43 ms
65,384 KB
testcase_20 AC 41 ms
60,684 KB
testcase_21 AC 42 ms
61,044 KB
testcase_22 AC 47 ms
72,124 KB
testcase_23 AC 48 ms
73,004 KB
testcase_24 AC 51 ms
72,632 KB
testcase_25 AC 47 ms
72,684 KB
testcase_26 AC 42 ms
59,224 KB
testcase_27 AC 43 ms
59,616 KB
testcase_28 AC 46 ms
71,932 KB
testcase_29 AC 46 ms
72,136 KB
testcase_30 AC 47 ms
72,532 KB
testcase_31 AC 46 ms
72,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
n = len(S)

cnt = [0] * 26
ans = 0

for i, s in enumerate(S):
    p = ord(s) - 65
    ans += cnt[p] * (n - 1 - i)
    cnt[p] += 1

for c in cnt:
    ans -= c * (c - 1) * (c - 2) // 6

print(ans)
0