結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー focus
提出日時 2018-01-23 14:25:02
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 516 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 59,864 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-18 10:22:38
合計ジャッジ時間 1,150 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<cstdio>
using namespace std;
int main(){
    int count=0,ans=0;
    string s1,s2;
    cin >> s1 >> s2;
    for(int i=0;i<7;i++){
        if(s1[i]=='o')  count++;
        else{
            ans = max(ans,count);
            count=0;
        }
    }
    for(int i=0;i<7;i++){
        if(s2[i]=='o')  count++;
        else{
            ans = max(ans,count);
            count=0;
        }
    }
    ans = max(ans,count);
    cout << ans;
    return 0;
}

0