結果

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

ソースコード

diff #

#include<iostream>
#include<string>
#include<algorithm>
#include<cmath>
#include<math.h>
#include<iomanip>
#include<stdio.h>
#include<cstring>
using namespace std;
 
int main(){

  char c;
  int ans=0, tmp=0;
  for(int i=0; i<14; i++){
    cin >> c;
    if(c=='o'){
      tmp++;
    } else {
      tmp=0;
    }
    if(tmp>ans){
      ans=tmp;
    }
  }

  cout << ans << endl;

  return 0;
}
0