結果
問題 |
No.203 ゴールデン・ウィーク(1)
|
ユーザー |
![]() |
提出日時 | 2016-02-27 11:33:23 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 313 bytes |
コンパイル時間 | 446 ms |
コンパイル使用メモリ | 59,972 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-18 09:40:05 |
合計ジャッジ時間 | 1,223 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 29 |
ソースコード
#include <iostream> #include <string> #include <cmath> using namespace std; int main(){ int ans = 0,now = 0; string a,b; cin >> a >> b; a += b; for(int i = 0;i < a.size();i++){ if(a[i] == 'o'){ now++; ans = max(now,ans); }else now = 0; } cout << ans << endl; }