結果
| 問題 |
No.203 ゴールデン・ウィーク(1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-01-03 15:14:11 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 380 bytes |
| コンパイル時間 | 582 ms |
| コンパイル使用メモリ | 61,696 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-18 10:21:11 |
| 合計ジャッジ時間 | 1,155 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 29 |
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
int main(){
string str,str1,str2;
int cnt=0;
int max=0;
cin>>str1>>str2;
str=str1+str2;
for(int i=0;i<14;i++){
if(str[i]=='o'){
cnt+=1;
}
else if(cnt>0&&max<cnt){
max=cnt;
cnt=0;
}else{
cnt=0;
}
if(str[13]=='o'&&max<cnt)max=cnt;
}
cout<<max<<endl;
}