結果
問題 |
No.203 ゴールデン・ウィーク(1)
|
ユーザー |
![]() |
提出日時 | 2016-02-27 11:26:20 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 295 bytes |
コンパイル時間 | 478 ms |
コンパイル使用メモリ | 56,952 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 09:39:51 |
合計ジャッジ時間 | 1,370 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 29 |
ソースコード
#include <iostream> #include <string> using namespace std; int main(){ int max = 0,now = 0; string a,b; cin >> a >> b; a += b; for(int i = 0;i < 14;i++){ if(a[i] == 'o'){ now++; if(max < now) max = now; }else now = 0; } cout << max << endl; }