結果

問題 No.2419 MMA文字列2
ユーザー noriocnorioc
提出日時 2023-08-12 16:43:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 850 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 78,376 KB
最終ジャッジ日時 2024-11-20 06:29:22
合計ジャッジ時間 10,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
63,360 KB
testcase_01 AC 61 ms
63,872 KB
testcase_02 AC 60 ms
64,064 KB
testcase_03 AC 71 ms
69,376 KB
testcase_04 AC 64 ms
66,688 KB
testcase_05 AC 58 ms
63,744 KB
testcase_06 AC 60 ms
63,872 KB
testcase_07 AC 59 ms
63,232 KB
testcase_08 AC 59 ms
63,616 KB
testcase_09 AC 58 ms
63,744 KB
testcase_10 AC 60 ms
63,872 KB
testcase_11 AC 66 ms
66,944 KB
testcase_12 AC 251 ms
77,440 KB
testcase_13 AC 108 ms
77,516 KB
testcase_14 AC 405 ms
77,636 KB
testcase_15 AC 278 ms
77,824 KB
testcase_16 AC 436 ms
77,568 KB
testcase_17 AC 180 ms
77,464 KB
testcase_18 AC 435 ms
77,688 KB
testcase_19 AC 481 ms
77,912 KB
testcase_20 AC 204 ms
77,568 KB
testcase_21 AC 171 ms
77,468 KB
testcase_22 AC 358 ms
77,712 KB
testcase_23 AC 346 ms
77,744 KB
testcase_24 AC 335 ms
78,208 KB
testcase_25 AC 331 ms
77,952 KB
testcase_26 AC 97 ms
77,096 KB
testcase_27 AC 269 ms
77,440 KB
testcase_28 AC 814 ms
78,080 KB
testcase_29 AC 850 ms
78,336 KB
testcase_30 AC 815 ms
77,956 KB
testcase_31 AC 837 ms
78,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from string import ascii_uppercase
from math import comb

S = input()

freq = Counter()
ans = 0
for c in S:
    for a in ascii_uppercase:
        if a == c: continue
        ans += comb(freq[a], 2)
    freq[c] += 1

print(ans)
0