結果

問題 No.346 チワワ数え上げ問題
ユーザー soupesuteakasoupesuteaka
提出日時 2016-03-04 18:45:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-09-24 14:10:06
合計ジャッジ時間 2,383 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 79 ms
14,592 KB
testcase_11 AC 60 ms
12,928 KB
testcase_12 AC 73 ms
13,696 KB
testcase_13 AC 58 ms
12,416 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 68 ms
13,440 KB
testcase_16 AC 72 ms
13,824 KB
testcase_17 AC 81 ms
14,464 KB
testcase_18 AC 89 ms
14,592 KB
testcase_19 AC 77 ms
13,952 KB
testcase_20 AC 101 ms
11,776 KB
testcase_21 AC 108 ms
14,976 KB
testcase_22 AC 106 ms
14,848 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 28 ms
10,624 KB
testcase_25 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: UTF-8

import sys
from math import log
from collections import deque
from functools import reduce

### defs ###

### main ###
S = sys.stdin.readline().strip('\r\n')
sz = len(S)
wc = [0]*sz
for i in range(sz-1,-1,-1):
	if (S[i]=="w"):
		wc[i]+=1
	if (i < sz-1):
		wc[i]+=wc[i+1]
ans=0
for i in range(sz):
	if(S[i]=='c'):
		x=wc[i]
		ans+=x*(x-1)//2
print(ans)
0