結果

問題 No.346 チワワ数え上げ問題
ユーザー vwxyzvwxyz
提出日時 2024-12-19 19:48:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 78,756 KB
最終ジャッジ日時 2024-12-19 19:48:37
合計ジャッジ時間 2,353 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,412 KB
testcase_01 AC 37 ms
53,220 KB
testcase_02 AC 35 ms
53,108 KB
testcase_03 AC 38 ms
52,888 KB
testcase_04 AC 36 ms
52,124 KB
testcase_05 AC 37 ms
52,060 KB
testcase_06 AC 37 ms
52,616 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 38 ms
52,332 KB
testcase_09 AC 38 ms
53,124 KB
testcase_10 AC 58 ms
76,068 KB
testcase_11 AC 53 ms
69,140 KB
testcase_12 AC 57 ms
73,356 KB
testcase_13 AC 52 ms
68,720 KB
testcase_14 AC 45 ms
61,232 KB
testcase_15 AC 55 ms
71,040 KB
testcase_16 AC 58 ms
74,192 KB
testcase_17 AC 57 ms
76,044 KB
testcase_18 AC 63 ms
78,756 KB
testcase_19 AC 54 ms
73,692 KB
testcase_20 AC 56 ms
72,720 KB
testcase_21 AC 62 ms
77,000 KB
testcase_22 AC 58 ms
75,512 KB
testcase_23 AC 37 ms
53,196 KB
testcase_24 AC 38 ms
51,820 KB
testcase_25 AC 38 ms
52,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
N=len(S)
C=[0]+[s=="c" for s in S]
W=[0]+[s=="w" for s in S]
for i in range(1,N+1):
    C[i]+=C[i-1]
    W[i]+=W[i-1]
ans=0
for i in range(N):
    if S[i]=="w":
        ans+=C[i]*(W[N]-W[i+1])
print(ans)
0