結果

問題 No.346 チワワ数え上げ問題
ユーザー alpha_virginis
提出日時 2016-02-27 01:06:01
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 470 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 65,624 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-24 10:54:21
合計ジャッジ時間 1,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 23
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:14:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |   scanf("%s", str);
      |   ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include <cstring>
#include <iostream>
#include <vector>
#include <string>
#include <map>
#include <queue>
#include <algorithm>
#include <stack>

char str[112345];

int main() {

  scanf("%s", str);
  
  long dp[4] = {};
  dp[0] = 1;
  for(int i = 0; ; ++i) {
    if( str[i] == '\0' ) break;
    if( str[i] == 'w' ) {
      dp[3] += dp[2];
      dp[2] += dp[1];
    }
    if( str[i] == 'c' ) {
      dp[1] += dp[0];
    }
  }

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