結果
問題 |
No.436 ccw
|
ユーザー |
![]() |
提出日時 | 2021-02-21 14:19:48 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 252 bytes |
コンパイル時間 | 2,185 ms |
コンパイル使用メモリ | 191,832 KB |
最終ジャッジ日時 | 2025-01-19 02:58:59 |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 24 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0;i<n;i++) typedef long long ll; int temp; int main() { string s; cin>>s; int sz=s.size(); int cnt=0; for(char c:s) if(c=='c') cnt++; cout<<min(cnt-1,sz-cnt)<<endl; }