結果

問題 No.346 チワワ数え上げ問題
ユーザー flippergoflippergo
提出日時 2024-10-13 08:43:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 80,616 KB
最終ジャッジ日時 2024-10-13 08:43:08
合計ジャッジ時間 2,272 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,948 KB
testcase_01 AC 38 ms
52,932 KB
testcase_02 AC 36 ms
53,356 KB
testcase_03 AC 36 ms
53,116 KB
testcase_04 AC 37 ms
53,132 KB
testcase_05 AC 36 ms
53,080 KB
testcase_06 AC 36 ms
52,320 KB
testcase_07 AC 39 ms
52,512 KB
testcase_08 AC 38 ms
52,160 KB
testcase_09 AC 35 ms
53,352 KB
testcase_10 AC 54 ms
69,660 KB
testcase_11 AC 57 ms
66,412 KB
testcase_12 AC 54 ms
67,332 KB
testcase_13 AC 49 ms
65,320 KB
testcase_14 AC 41 ms
58,520 KB
testcase_15 AC 53 ms
67,192 KB
testcase_16 AC 56 ms
68,864 KB
testcase_17 AC 58 ms
68,916 KB
testcase_18 AC 57 ms
68,312 KB
testcase_19 AC 54 ms
69,368 KB
testcase_20 AC 52 ms
67,356 KB
testcase_21 AC 76 ms
80,372 KB
testcase_22 AC 76 ms
80,616 KB
testcase_23 AC 37 ms
52,464 KB
testcase_24 AC 38 ms
52,892 KB
testcase_25 AC 36 ms
52,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
S = input().strip()
C = []
W = []
for i in range(len(S)):
    if S[i]=="c":
        C.append(i)
    if S[i]=="w":
        W.append(i)
n = len(W)
ans = 0
for i in C:
    ind = bisect_right(W,i)
    m = n-ind
    ans += (m*(m-1))//2
print(ans)
0