結果

問題 No.2419 MMA文字列2
ユーザー H20H20
提出日時 2023-08-12 13:50:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 85,716 KB
最終ジャッジ日時 2024-11-19 16:22:08
合計ジャッジ時間 3,545 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,428 KB
testcase_01 AC 38 ms
51,816 KB
testcase_02 AC 39 ms
52,356 KB
testcase_03 AC 44 ms
60,052 KB
testcase_04 AC 44 ms
59,500 KB
testcase_05 AC 39 ms
53,100 KB
testcase_06 AC 39 ms
53,412 KB
testcase_07 AC 39 ms
51,828 KB
testcase_08 AC 38 ms
52,832 KB
testcase_09 AC 39 ms
53,124 KB
testcase_10 AC 39 ms
52,488 KB
testcase_11 AC 44 ms
59,564 KB
testcase_12 AC 62 ms
65,876 KB
testcase_13 AC 48 ms
61,276 KB
testcase_14 AC 77 ms
71,968 KB
testcase_15 AC 64 ms
67,060 KB
testcase_16 AC 80 ms
72,872 KB
testcase_17 AC 55 ms
63,908 KB
testcase_18 AC 81 ms
72,360 KB
testcase_19 AC 83 ms
72,928 KB
testcase_20 AC 57 ms
64,228 KB
testcase_21 AC 53 ms
62,272 KB
testcase_22 AC 130 ms
84,980 KB
testcase_23 AC 136 ms
85,224 KB
testcase_24 AC 136 ms
85,716 KB
testcase_25 AC 127 ms
85,160 KB
testcase_26 AC 53 ms
63,112 KB
testcase_27 AC 124 ms
85,252 KB
testcase_28 AC 130 ms
85,116 KB
testcase_29 AC 136 ms
84,956 KB
testcase_30 AC 131 ms
85,088 KB
testcase_31 AC 129 ms
85,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
DP = [0]*26
ans = 0
for s in S:
    i = ord(s)-ord('A')
    DP[i]+=1
    for j in range(26):
        if i!=j:
            ans+=DP[j]*(DP[j]-1)//2
print(ans)
0