結果

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

ソースコード

diff #

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

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