結果

問題 No.346 チワワ数え上げ問題
ユーザー Konton7Konton7
提出日時 2019-05-02 23:54:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-06-10 04:17:19
合計ジャッジ時間 2,640 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 33 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 70 ms
11,008 KB
testcase_11 AC 52 ms
11,008 KB
testcase_12 AC 59 ms
11,008 KB
testcase_13 AC 49 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 58 ms
10,880 KB
testcase_16 AC 64 ms
11,008 KB
testcase_17 AC 69 ms
11,136 KB
testcase_18 AC 68 ms
11,008 KB
testcase_19 AC 65 ms
11,136 KB
testcase_20 AC 66 ms
12,416 KB
testcase_21 AC 85 ms
15,232 KB
testcase_22 AC 85 ms
15,232 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,624 KB
testcase_25 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
ls = len(s)

c_list = []
w_counter = 0

for i in range(ls):
    if s[ls-i-1] == "c":
        c_list.append(w_counter)
    elif s[ls-i-1] == "w":
        w_counter += 1


sum_list = [0]
for i in range(w_counter+1):
    sum_list.append(sum_list[-1]+i)

c_list = [ sum_list[c_list[i]] for i in range(len(c_list))]
print(sum(c_list))
0