結果

問題 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
コンパイル時間 199 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-05-06 18:12:13
合計ジャッジ時間 3,139 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 155 ms
21,376 KB
testcase_11 AC 98 ms
17,152 KB
testcase_12 WA -
testcase_13 AC 90 ms
16,384 KB
testcase_14 AC 33 ms
11,008 KB
testcase_15 AC 108 ms
18,560 KB
testcase_16 AC 119 ms
19,712 KB
testcase_17 AC 172 ms
21,376 KB
testcase_18 AC 146 ms
21,376 KB
testcase_19 AC 125 ms
19,840 KB
testcase_20 AC 149 ms
24,192 KB
testcase_21 AC 167 ms
26,624 KB
testcase_22 WA -
testcase_23 AC 28 ms
10,624 KB
testcase_24 AC 26 ms
10,752 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