結果

問題 No.203 ゴールデン・ウィーク(1)
ユーザー nali
提出日時 2019-07-18 22:24:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 282 bytes
コンパイル時間 1,840 ms
コンパイル使用メモリ 166,080 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 22:41:51
合計ジャッジ時間 3,135 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  string s, t;
  int ans = 0, cnt = 0;
  cin >> s >> t;
  s += t;
  for (auto& c : s) {
    if (c == 'o') {
      cnt++;
      ans = max(ans, cnt);
    } else {
      cnt = 0;
    }
  }
  cout << ans << endl;
  return 0;
}
0