結果

問題 No.2298 yukicounter
ユーザー lloyzlloyz
提出日時 2023-05-12 21:25:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 76,996 KB
最終ジャッジ日時 2024-11-28 17:13:53
合計ジャッジ時間 2,732 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()

yukicoder = 'yukicoder'
n = len(s)
ans = 0
temp = 0
for i in range(n):
    if s[i] == yukicoder[temp % 9]:
        temp += 1
    else:
        temp = 0
    ans = max(ans, temp // 9)
print(ans)
0