結果

問題 No.346 チワワ数え上げ問題
ユーザー yakeshibayakeshiba
提出日時 2021-03-13 04:57:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 1,542 ms
コンパイル使用メモリ 81,392 KB
実行使用メモリ 66,204 KB
最終ジャッジ日時 2024-10-14 17:21:51
合計ジャッジ時間 3,027 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,228 KB
testcase_01 AC 36 ms
52,640 KB
testcase_02 AC 34 ms
52,072 KB
testcase_03 AC 35 ms
52,536 KB
testcase_04 AC 34 ms
53,080 KB
testcase_05 AC 36 ms
52,028 KB
testcase_06 AC 33 ms
52,684 KB
testcase_07 AC 32 ms
53,372 KB
testcase_08 AC 35 ms
52,120 KB
testcase_09 AC 36 ms
52,380 KB
testcase_10 AC 40 ms
66,000 KB
testcase_11 AC 41 ms
63,160 KB
testcase_12 AC 42 ms
63,744 KB
testcase_13 AC 40 ms
63,052 KB
testcase_14 AC 36 ms
58,892 KB
testcase_15 AC 40 ms
63,712 KB
testcase_16 AC 42 ms
64,044 KB
testcase_17 AC 43 ms
65,988 KB
testcase_18 AC 44 ms
65,528 KB
testcase_19 AC 41 ms
65,004 KB
testcase_20 AC 41 ms
59,244 KB
testcase_21 AC 44 ms
66,204 KB
testcase_22 AC 42 ms
65,824 KB
testcase_23 AC 35 ms
52,172 KB
testcase_24 AC 35 ms
53,100 KB
testcase_25 AC 34 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

#print(S)

c = 0
w = 0
ans = 0
for s in S[::-1]:
    if s == "c":
        c += 1
        ans += w*(w-1)//2
        #print(ans)
    if s == "w":
        w += 1
        
print(ans)
0