結果

問題 No.346 チワワ数え上げ問題
ユーザー FromBooskaFromBooska
提出日時 2023-10-18 11:36:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 86,048 KB
最終ジャッジ日時 2024-09-18 07:59:50
合計ジャッジ時間 2,441 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
61,244 KB
testcase_01 AC 44 ms
57,940 KB
testcase_02 AC 37 ms
52,440 KB
testcase_03 AC 38 ms
53,096 KB
testcase_04 AC 45 ms
61,064 KB
testcase_05 AC 38 ms
52,696 KB
testcase_06 AC 43 ms
59,784 KB
testcase_07 AC 42 ms
57,908 KB
testcase_08 AC 43 ms
60,792 KB
testcase_09 AC 44 ms
60,828 KB
testcase_10 AC 73 ms
85,760 KB
testcase_11 AC 53 ms
73,080 KB
testcase_12 AC 71 ms
83,904 KB
testcase_13 AC 53 ms
73,620 KB
testcase_14 AC 47 ms
62,568 KB
testcase_15 AC 69 ms
83,016 KB
testcase_16 AC 69 ms
84,160 KB
testcase_17 AC 72 ms
85,540 KB
testcase_18 AC 74 ms
86,048 KB
testcase_19 AC 70 ms
84,596 KB
testcase_20 AC 53 ms
74,540 KB
testcase_21 AC 72 ms
85,844 KB
testcase_22 AC 73 ms
85,880 KB
testcase_23 AC 39 ms
52,812 KB
testcase_24 AC 37 ms
53,152 KB
testcase_25 AC 37 ms
52,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# dp[i][c count, cw count, cww count]

S = input()
N = len(S)

dp = [[0]*3 for i in range(N+1)]

for i in range(1, N+1):
    s = S[i-1]
    for j in range(3):
        dp[i][j] += dp[i-1][j]
    
    if s == 'c':
        dp[i][0] += 1
    elif s == 'w':
        dp[i][1] += dp[i-1][0]
        dp[i][2] += dp[i-1][1]
    #print(dp[i])

ans = dp[N][2]
print(ans)
0