結果

問題 No.346 チワワ数え上げ問題
ユーザー mesame3993mesame3993
提出日時 2021-09-16 08:19:43
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 148 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 94,732 KB
最終ジャッジ日時 2024-06-29 14:01:32
合計ジャッジ時間 5,729 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,728 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 33 ms
52,224 KB
testcase_03 AC 32 ms
51,584 KB
testcase_04 AC 31 ms
52,224 KB
testcase_05 AC 32 ms
52,224 KB
testcase_06 AC 31 ms
52,224 KB
testcase_07 AC 31 ms
51,968 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 32 ms
52,352 KB
testcase_10 AC 184 ms
75,840 KB
testcase_11 AC 90 ms
75,416 KB
testcase_12 AC 127 ms
76,032 KB
testcase_13 AC 86 ms
75,696 KB
testcase_14 AC 39 ms
57,856 KB
testcase_15 AC 119 ms
75,776 KB
testcase_16 AC 143 ms
75,648 KB
testcase_17 AC 185 ms
75,820 KB
testcase_18 AC 184 ms
75,960 KB
testcase_19 AC 150 ms
75,648 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
n = len(s)
ans = 0
for i in range(n):
	if s[i] == 'c':
		tmp = s[i:]
		w = tmp.count('w')
		if w >= 2:
			ans += w*(w-1) // 2
print(ans)
0