結果

問題 No.346 チワワ数え上げ問題
ユーザー syunsukesyunsuke
提出日時 2019-09-16 11:15:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-07-06 22:59:22
合計ジャッジ時間 2,612 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 73 ms
14,848 KB
testcase_11 AC 53 ms
13,184 KB
testcase_12 AC 62 ms
14,080 KB
testcase_13 AC 53 ms
12,800 KB
testcase_14 AC 26 ms
10,880 KB
testcase_15 AC 60 ms
13,824 KB
testcase_16 AC 66 ms
14,208 KB
testcase_17 AC 71 ms
14,848 KB
testcase_18 AC 75 ms
14,848 KB
testcase_19 AC 71 ms
14,336 KB
testcase_20 AC 87 ms
17,792 KB
testcase_21 AC 100 ms
17,920 KB
testcase_22 AC 102 ms
17,920 KB
testcase_23 AC 25 ms
10,752 KB
testcase_24 AC 24 ms
10,624 KB
testcase_25 AC 23 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=list(input())
C=[]
if S[0]=="c":
    C.append(1)
else:
    C.append(0)

for i in range(1,len(S)):
    if S[i]=="c":
        C.append(C[-1]+1)
    else:
        C.append(C[-1])
        
s=S[::-1]
W=[]
if s[0]=="w":
    W.append(1)
else:
    W.append(0)

for i in range(1,len(S)):
    if s[i]=="w":
        W.append(W[-1]+1)
    else:
        W.append(W[-1])
W=W[::-1]
#print(S)
#print(C)
#print(W)
ans=0
for i in range(1,len(S)-1):
    if S[i]=="w":
        ans+=C[i]*(W[i]-1)
print(ans)
0