結果

問題 No.2419 MMA文字列2
ユーザー pyt-314pyt-314
提出日時 2023-08-12 15:11:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 268 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,292 KB
最終ジャッジ日時 2024-11-20 00:05:51
合計ジャッジ時間 57,358 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,000 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 25 ms
15,744 KB
testcase_06 WA -
testcase_07 AC 26 ms
21,632 KB
testcase_08 WA -
testcase_09 AC 26 ms
21,248 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 WA -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 819 ms
15,872 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
dc = set((k for k in s))
c = 0
for _ in range(len(s)):
    t = s[0]
    s = s[1:]
    n = s.count(t) + 1
    if n > 1:
        n = s.index(t)
        k = s[n:]
        for i in dc:
            if i != t and i in k:
                c += k.count(i)
print(c)
0