結果

問題 No.346 チワワ数え上げ問題
ユーザー yansi819yansi819
提出日時 2024-05-20 11:08:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 78,588 KB
最終ジャッジ日時 2024-05-20 11:08:06
合計ジャッジ時間 3,263 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,004 KB
testcase_01 AC 39 ms
52,532 KB
testcase_02 AC 38 ms
52,364 KB
testcase_03 AC 38 ms
52,404 KB
testcase_04 AC 38 ms
53,260 KB
testcase_05 AC 38 ms
54,232 KB
testcase_06 AC 40 ms
53,236 KB
testcase_07 AC 39 ms
52,724 KB
testcase_08 AC 39 ms
53,276 KB
testcase_09 AC 42 ms
53,680 KB
testcase_10 AC 62 ms
72,380 KB
testcase_11 AC 55 ms
68,412 KB
testcase_12 AC 60 ms
69,596 KB
testcase_13 AC 57 ms
67,948 KB
testcase_14 AC 44 ms
60,240 KB
testcase_15 AC 57 ms
69,824 KB
testcase_16 AC 59 ms
70,672 KB
testcase_17 AC 57 ms
70,956 KB
testcase_18 AC 59 ms
71,768 KB
testcase_19 AC 57 ms
70,524 KB
testcase_20 AC 46 ms
60,560 KB
testcase_21 AC 87 ms
78,588 KB
testcase_22 AC 84 ms
78,460 KB
testcase_23 AC 37 ms
53,064 KB
testcase_24 AC 38 ms
53,748 KB
testcase_25 AC 38 ms
52,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import comb
from bisect import bisect_left
S = input().rstrip()
W = []
for i in range(len(S)):
    if S[i] == "w":
        W.append(i)
ans = 0
for i in range(len(S)):
    if S[i] == "c":
        w = len(W) - bisect_left(W, i)
        ans += comb(w, 2)
print(ans)
0