結果
問題 | No.2298 yukicounter |
ユーザー | SSRS |
提出日時 | 2023-05-12 21:21:23 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 310 bytes |
コンパイル時間 | 1,542 ms |
コンパイル使用メモリ | 167,192 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-28 17:03:23 |
合計ジャッジ時間 | 2,955 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ string S; cin >> S; string T = "yukicoder"; int N = S.size(); int mx = 0; int c = 0; for (int i = 0; i < N; i++){ if (S[i] == T[c % 9]){ c++; mx = max(mx, c / 9); } else { c = 0; } } cout << mx << endl; }