結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー aitdccd
提出日時 2018-01-04 13:44:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 360 bytes
コンパイル時間 1,477 ms
コンパイル使用メモリ 166,868 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-18 10:21:14
合計ジャッジ時間 2,416 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i, n) for(int i = 0; i < n; i++)

int main() {
    int ans = 0, cnt = 0;
    REP(i, 14) {
        char c;
        cin >> c;
        if (c == 'o') {
            cnt++;
            ans = max(ans, cnt);
        } else {
            cnt = 0;
        }
    }
    
    cout << ans << endl;
    return 0;
}
0