結果

問題 No.2419 MMA文字列2
ユーザー prd_xxxprd_xxx
提出日時 2023-08-12 13:48:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-11-19 16:14:51
合計ジャッジ時間 3,617 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 42 ms
58,880 KB
testcase_04 AC 42 ms
58,240 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 41 ms
51,712 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 38 ms
51,840 KB
testcase_11 AC 43 ms
58,624 KB
testcase_12 AC 65 ms
65,536 KB
testcase_13 AC 48 ms
60,800 KB
testcase_14 AC 78 ms
70,220 KB
testcase_15 AC 65 ms
65,664 KB
testcase_16 AC 80 ms
70,784 KB
testcase_17 AC 54 ms
62,976 KB
testcase_18 AC 82 ms
70,912 KB
testcase_19 AC 88 ms
71,040 KB
testcase_20 AC 59 ms
63,616 KB
testcase_21 AC 53 ms
62,592 KB
testcase_22 AC 126 ms
75,648 KB
testcase_23 AC 117 ms
75,776 KB
testcase_24 AC 115 ms
76,160 KB
testcase_25 AC 127 ms
75,776 KB
testcase_26 AC 48 ms
60,544 KB
testcase_27 AC 100 ms
68,992 KB
testcase_28 AC 124 ms
75,896 KB
testcase_29 AC 148 ms
76,160 KB
testcase_30 AC 125 ms
75,648 KB
testcase_31 AC 139 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

cnt = [0]*26
ans = 0
for c in S:
    i = ord(c) - ord('A')
    cnt[i] += 1
    for j in range(26):
        if i==j: continue
        if cnt[j] >= 2:
            n = cnt[j]
            ans += n*(n-1)//2
print(ans)
0