結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー tkzw_21
提出日時 2015-05-08 22:21:40
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 335 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 69,284 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-18 08:50:14
合計ジャッジ時間 1,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <map>
#include <cmath>
#include <algorithm>
#include <vector>

using namespace std;

int main(void){
	string s1,s2;
	cin >> s1 >> s2;
	s1 += s2;
	int ret = 0,a=0;
	for(int i=0;i<s1.size();i++){
		if(s1[i] == 'o')a++;
		else a = 0;
		ret = max(a,ret);
	}
	cout << ret << endl;
	return 0;
}
0