結果
問題 |
No.437 cwwゲーム
|
ユーザー |
![]() |
提出日時 | 2016-11-02 05:37:47 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 221 bytes |
コンパイル時間 | 1,461 ms |
コンパイル使用メモリ | 167,948 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-25 01:23:40 |
合計ジャッジ時間 | 2,451 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 2 |
other | AC * 9 WA * 32 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { string s; int w = 0; cin >> s; int N = s.size(); for(auto c : s) { w += (c == 'w'); } cout << min(w, N - w - 1) << endl; }