結果
| 問題 |
No.436 ccw
|
| コンテスト | |
| ユーザー |
yuruhiya
|
| 提出日時 | 2019-01-13 11:08:38 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 2,000 ms |
| コード長 | 218 bytes |
| コンパイル時間 | 795 ms |
| コンパイル使用メモリ | 58,072 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-25 15:27:58 |
| 合計ジャッジ時間 | 1,729 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 24 |
ソースコード
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
#define ALL(x) (x).begin(),(x).end()
int main() {
string s; cin >> s;
cout << min(count(ALL(s), 'c') - 1, count(ALL(s), 'w')) << endl;
}
yuruhiya