結果

問題 No.346 チワワ数え上げ問題
ユーザー rlangevinrlangevin
提出日時 2023-01-06 00:09:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 66,484 KB
最終ジャッジ日時 2024-11-29 16:31:56
合計ジャッジ時間 2,421 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,324 KB
testcase_01 AC 37 ms
53,012 KB
testcase_02 AC 37 ms
53,196 KB
testcase_03 AC 33 ms
53,120 KB
testcase_04 AC 33 ms
52,340 KB
testcase_05 AC 33 ms
52,640 KB
testcase_06 AC 33 ms
52,296 KB
testcase_07 AC 32 ms
52,364 KB
testcase_08 AC 32 ms
53,316 KB
testcase_09 AC 33 ms
52,560 KB
testcase_10 AC 39 ms
65,444 KB
testcase_11 AC 39 ms
62,444 KB
testcase_12 AC 39 ms
63,080 KB
testcase_13 AC 38 ms
62,292 KB
testcase_14 AC 36 ms
57,648 KB
testcase_15 AC 39 ms
64,072 KB
testcase_16 AC 40 ms
65,500 KB
testcase_17 AC 40 ms
65,208 KB
testcase_18 AC 43 ms
66,484 KB
testcase_19 AC 40 ms
64,168 KB
testcase_20 AC 36 ms
57,984 KB
testcase_21 AC 39 ms
65,900 KB
testcase_22 AC 39 ms
64,828 KB
testcase_23 AC 33 ms
52,312 KB
testcase_24 AC 36 ms
52,124 KB
testcase_25 AC 32 ms
52,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
c, cw, ans = 0, 0, 0
for s in S:
    if s == "c":
        c += 1
    elif s == "w":
        ans += cw
        cw += c
print(ans)
0