結果
| 問題 | No.346 チワワ数え上げ問題 |
| コンテスト | |
| ユーザー |
alpha_virginis
|
| 提出日時 | 2016-02-27 00:57:14 |
| 言語 | C90(gcc12) (gcc 12.4.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 510 bytes |
| 記録 | |
| コンパイル時間 | 140 ms |
| コンパイル使用メモリ | 31,632 KB |
| 最終ジャッジ日時 | 2026-02-23 20:48:25 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 WA * 9 |
ソースコード
/*
#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;
int i;
for(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;
}
alpha_virginis