結果

問題 No.346 チワワ数え上げ問題
ユーザー pluto77pluto77
提出日時 2016-02-28 16:10:03
言語 Python2
(2.7.18)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-09-24 12:05:08
合計ジャッジ時間 1,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 11 ms
6,816 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 10 ms
6,948 KB
testcase_04 AC 11 ms
6,940 KB
testcase_05 AC 11 ms
6,940 KB
testcase_06 AC 11 ms
6,940 KB
testcase_07 AC 11 ms
6,940 KB
testcase_08 AC 11 ms
6,944 KB
testcase_09 AC 11 ms
6,940 KB
testcase_10 AC 57 ms
9,984 KB
testcase_11 AC 38 ms
8,320 KB
testcase_12 AC 47 ms
9,088 KB
testcase_13 AC 34 ms
8,192 KB
testcase_14 AC 12 ms
6,940 KB
testcase_15 AC 43 ms
8,832 KB
testcase_16 AC 48 ms
9,344 KB
testcase_17 AC 56 ms
10,112 KB
testcase_18 AC 56 ms
9,984 KB
testcase_19 AC 50 ms
9,472 KB
testcase_20 AC 77 ms
7,936 KB
testcase_21 AC 73 ms
10,240 KB
testcase_22 AC 73 ms
10,240 KB
testcase_23 AC 11 ms
6,944 KB
testcase_24 AC 10 ms
6,940 KB
testcase_25 AC 11 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: utf-8
##yuki_346

def combi(n):
 return n*(n-1)/2

s=list(raw_input())
n=len(s)

sw=[0 for i in xrange(n+1)]
for i in xrange(n-1,-1,-1):
 sw[i]+=sw[i+1]
 if s[i]=='w':
  sw[i]+=1

res=0
for i in xrange(n-1):
 if s[i]=='c':
  res+=combi(sw[i+1])

print res
0