結果

問題 No.346 チワワ数え上げ問題
ユーザー NoaSaberNoaSaber
提出日時 2021-03-08 10:43:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 89,744 KB
最終ジャッジ日時 2024-10-09 19:47:39
合計ジャッジ時間 2,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,892 KB
testcase_01 AC 37 ms
52,820 KB
testcase_02 AC 37 ms
52,412 KB
testcase_03 AC 37 ms
52,216 KB
testcase_04 AC 38 ms
53,936 KB
testcase_05 AC 38 ms
52,740 KB
testcase_06 AC 38 ms
53,552 KB
testcase_07 AC 39 ms
53,056 KB
testcase_08 AC 40 ms
52,628 KB
testcase_09 AC 39 ms
52,980 KB
testcase_10 AC 75 ms
89,744 KB
testcase_11 AC 52 ms
72,116 KB
testcase_12 AC 53 ms
74,100 KB
testcase_13 AC 52 ms
70,552 KB
testcase_14 AC 44 ms
62,328 KB
testcase_15 AC 51 ms
73,520 KB
testcase_16 AC 55 ms
75,196 KB
testcase_17 AC 72 ms
89,372 KB
testcase_18 AC 75 ms
89,652 KB
testcase_19 AC 54 ms
75,308 KB
testcase_20 AC 52 ms
74,076 KB
testcase_21 AC 73 ms
89,580 KB
testcase_22 AC 74 ms
89,724 KB
testcase_23 AC 37 ms
53,504 KB
testcase_24 AC 36 ms
52,464 KB
testcase_25 AC 37 ms
53,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l=list(input())
cnt=[[0]*2 for i in range(len(l)+1)]
for i in range(len(l)):
    a=l[i]
    cnt[i+1][0]=1 if a=="c" else 0
    cnt[i+1][1]=cnt[i][1]+(1 if a=="w" else 0)
ans=0
for i,j in cnt:
    ans+=i*(cnt[-1][1]-j)*(cnt[-1][1]-j-1)//2
print(ans)
0