結果

問題 No.346 チワワ数え上げ問題
ユーザー alpha_virginisalpha_virginis
提出日時 2016-02-27 00:56:37
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 505 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 21,120 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-24 10:52:44
合計ジャッジ時間 1,144 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 0 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 0 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 0 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 WA -
testcase_11 AC 1 ms
6,940 KB
testcase_12 WA -
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 0 ms
6,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 0 ms
6,940 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 0 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
#include <cstring>
#include <iostream>
#include <vector>
#include <string>
#include <map>
#include <queue>
#include <algorithm>
#include <stack>
*/
#include <unistd.h>
#include <stdio.h>

char str[112345];

int main() {

  int len = read(0, str, sizeof(str));

  int dp[4] = {};
  dp[0] = 1;
  for(int i = 0; i < len; ++i) {
    if( str[i] == 'w' ) {
      dp[3] += dp[2];
      dp[2] += dp[1];
    }
    if( str[i] == 'c' ) {
      dp[1] += dp[0];
    }
  }

  printf("%d\n", dp[3]);
  
  return 0;
}
0