結果
問題 | No.436 ccw |
ユーザー |
👑 |
提出日時 | 2020-01-09 17:11:15 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 170 bytes |
コンパイル時間 | 624 ms |
コンパイル使用メモリ | 64,116 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-23 03:56:26 |
合計ジャッジ時間 | 1,724 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 24 |
ソースコード
#include <iostream> using namespace std; int main(){ string s;cin>>s; int c = 0; for(; s[c] == 'c'; c++); cout << min(c-1,(int)s.size()-c) << endl; }