結果

問題 No.346 チワワ数え上げ問題
ユーザー convexineqconvexineq
提出日時 2021-02-01 18:01:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 67,192 KB
最終ジャッジ日時 2024-06-29 22:53:57
合計ジャッジ時間 2,071 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,696 KB
testcase_01 AC 35 ms
51,824 KB
testcase_02 AC 35 ms
51,996 KB
testcase_03 AC 32 ms
52,608 KB
testcase_04 AC 31 ms
52,000 KB
testcase_05 AC 32 ms
52,124 KB
testcase_06 AC 31 ms
52,416 KB
testcase_07 AC 31 ms
51,696 KB
testcase_08 AC 31 ms
52,464 KB
testcase_09 AC 31 ms
51,948 KB
testcase_10 AC 38 ms
65,484 KB
testcase_11 AC 37 ms
62,824 KB
testcase_12 AC 38 ms
65,076 KB
testcase_13 AC 39 ms
63,240 KB
testcase_14 AC 34 ms
58,964 KB
testcase_15 AC 37 ms
63,792 KB
testcase_16 AC 38 ms
64,248 KB
testcase_17 AC 39 ms
66,696 KB
testcase_18 AC 39 ms
67,192 KB
testcase_19 AC 39 ms
64,716 KB
testcase_20 AC 39 ms
59,056 KB
testcase_21 AC 40 ms
65,132 KB
testcase_22 AC 42 ms
65,684 KB
testcase_23 AC 36 ms
53,164 KB
testcase_24 AC 38 ms
52,644 KB
testcase_25 AC 36 ms
52,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
a = 1
b = c = d = 0
for i in s:
    if i == "c":
        b += a
    elif i == "w":
        c,d = c+b,d+c
print(d)
0