結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー treeonetreeone
提出日時 2016-01-01 17:12:02
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 715 bytes
コンパイル時間 627 ms
コンパイル使用メモリ 71,764 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 09:38:42
合計ジャッジ時間 1,575 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <sstream>
#include <algorithm>
#include <map>
#include <set>
#include <cstdio>
#include <cmath>
#define rep(i,l,n) for(lint i=l;i<n;i++)
#define rer(i,l,n) for(lint i=l;i<=n;i++)
#define all(a) a.begin(),a.end()
#define o(a) cout<<a<<endl
#define pb(a) push_back(a)
#define mk(a,b) make_pair(a,b)
#define fi first
#define se second
using namespace std;
typedef long long lint;
typedef vector<int> vi;
typedef vector<lint> vli;
typedef vector<vi> vvi;
typedef pair<int,int> pii;

int main(){
	string s,t;
	cin>>s>>t;
	s+=t;
	int MAX=0,now=0;
	rep(i,0,14){
		if(s[i]=='o') now++;
		if(s[i]=='x'||i==13){
			MAX=max(MAX,now);
			now=0;
		}
	}
	o(MAX);
}
0