結果

問題 No.2419 MMA文字列2
ユーザー rlangevinrlangevin
提出日時 2023-09-03 15:12:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 80,752 KB
最終ジャッジ日時 2024-06-12 20:55:37
合計ジャッジ時間 4,416 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 43 ms
58,752 KB
testcase_04 AC 42 ms
58,880 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 37 ms
52,072 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 41 ms
58,752 KB
testcase_12 AC 66 ms
64,896 KB
testcase_13 AC 49 ms
60,800 KB
testcase_14 AC 79 ms
69,248 KB
testcase_15 AC 64 ms
65,792 KB
testcase_16 AC 79 ms
70,016 KB
testcase_17 AC 54 ms
62,720 KB
testcase_18 AC 80 ms
70,144 KB
testcase_19 AC 82 ms
70,144 KB
testcase_20 AC 56 ms
63,360 KB
testcase_21 AC 53 ms
62,208 KB
testcase_22 AC 122 ms
80,324 KB
testcase_23 AC 132 ms
80,648 KB
testcase_24 AC 134 ms
80,384 KB
testcase_25 AC 122 ms
80,476 KB
testcase_26 AC 52 ms
61,952 KB
testcase_27 AC 118 ms
80,340 KB
testcase_28 AC 125 ms
80,332 KB
testcase_29 AC 137 ms
80,752 KB
testcase_30 AC 126 ms
80,384 KB
testcase_31 AC 124 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
S = [ord(s) - ord("A") for s in S]
cnt = [0] * 26
ans = 0
for s in S:
    for i in range(26):
        if i == s:
            continue
        ans += cnt[i] * (cnt[i] - 1)//2
    cnt[s] += 1
    
print(ans)
        
0