結果

問題 No.2298 yukicounter
ユーザー 👑 CleyL
提出日時 2023-05-23 10:22:35
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 67,360 KB
最終ジャッジ日時 2025-02-13 04:11:34
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
	string s;cin>>s;
	int ans = 0;
	int nw = 0;
	for(int i = 0; s.size()-8 > i; i++){
		if(s.substr(i,9) == "yukicoder"){
			i+=8;
			nw++;
		}else{
			ans = max(nw,ans);
			nw = 0;
		}
	}
	cout <<max(nw,ans) << endl;
}
0