結果

問題 No.346 チワワ数え上げ問題
ユーザー aka_satana_haaka_satana_ha
提出日時 2017-12-07 05:26:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 511 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-11-29 02:48:07
合計ジャッジ時間 3,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,496 KB
testcase_01 AC 32 ms
10,368 KB
testcase_02 AC 29 ms
10,368 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 157 ms
21,120 KB
testcase_11 AC 99 ms
17,152 KB
testcase_12 WA -
testcase_13 AC 90 ms
16,384 KB
testcase_14 AC 34 ms
10,880 KB
testcase_15 AC 114 ms
18,432 KB
testcase_16 AC 126 ms
19,456 KB
testcase_17 AC 151 ms
21,248 KB
testcase_18 AC 153 ms
21,120 KB
testcase_19 AC 132 ms
19,712 KB
testcase_20 AC 150 ms
24,064 KB
testcase_21 AC 169 ms
26,368 KB
testcase_22 WA -
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 29 ms
10,496 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()

#jまでに作れるc,cw,cwwの数
dp=[[0 for i in range(3)] for j in range(len(S))]
dp[0][0]=0
dp[0][1]=0
dp[0][2]=0
for i in range(len(S)-1):
    if S[i]=='c':
        dp[i+1][0]=dp[i][0]+1
        dp[i+1][1]=dp[i][1]
        dp[i+1][2]=dp[i][2]
    elif S[i]=='w':
        dp[i+1][0]=dp[i][0]
        dp[i+1][1]=dp[i][1]+dp[i][0]
        dp[i+1][2]=dp[i][2]+dp[i][1]
    else:
        dp[i+1][0]=dp[i][0]
        dp[i+1][1]=dp[i][1]
        dp[i+1][2]=dp[i][2]

# print(dp)
print(dp[len(S)-1][2])
0