結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー RCCW
提出日時 2017-02-06 00:28:50
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 264 bytes
コンパイル時間 1,241 ms
コンパイル使用メモリ 160,372 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 09:58:42
合計ジャッジ時間 1,840 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(void) {
string s;
string sa;
cin>>s;
cin>>sa;
s=s+sa;

int ma=0;
int counter=0;
for (int i = 0; i < 14; ++i) {
	if(s[i]=='o'){
		counter++;
		ma=max(ma,counter);
	}else{
		counter=0;
	}
}
cout<<ma<<endl;

}

0