結果

問題 No.2298 yukicounter
ユーザー Ywestbuilderk
提出日時 2024-01-24 22:55:25
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 1,916 ms
コンパイル使用メモリ 192,136 KB
最終ジャッジ日時 2025-02-18 22:35:48
ジャッジサーバーID
(参考情報)
judge2 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	string s;
	cin >> s;
	int ans = 0;
	int t = 0;
	for(int i = 0;i < (int)s.size() - 8;){
		if(s.substr(i,9) == "yukicoder"){t++;i += 9;}
		else{
			ans = max(ans,t);
			t = 0;
			i++;
		}
	}
	if(t != 0) ans = max(ans,t);
	cout << ans;
}
0