結果

問題 No.2298 yukicounter
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-05-18 22:08:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 159,848 KB
最終ジャッジ日時 2024-12-16 10:37:04
合計ジャッジ時間 3,981 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,424 KB
testcase_01 AC 41 ms
55,552 KB
testcase_02 AC 38 ms
54,912 KB
testcase_03 AC 187 ms
128,632 KB
testcase_04 AC 109 ms
94,944 KB
testcase_05 AC 71 ms
79,848 KB
testcase_06 AC 280 ms
159,848 KB
testcase_07 AC 130 ms
92,200 KB
testcase_08 AC 105 ms
81,896 KB
testcase_09 AC 83 ms
85,912 KB
testcase_10 AC 65 ms
77,696 KB
testcase_11 AC 92 ms
89,624 KB
testcase_12 AC 92 ms
88,576 KB
testcase_13 AC 107 ms
85,888 KB
testcase_14 AC 86 ms
86,400 KB
testcase_15 AC 45 ms
63,232 KB
testcase_16 AC 72 ms
80,456 KB
testcase_17 AC 69 ms
79,232 KB
testcase_18 AC 38 ms
55,040 KB
testcase_19 AC 39 ms
55,680 KB
testcase_20 AC 39 ms
55,424 KB
testcase_21 AC 37 ms
55,424 KB
testcase_22 AC 74 ms
87,680 KB
testcase_23 AC 74 ms
85,760 KB
testcase_24 AC 152 ms
133,248 KB
testcase_25 AC 99 ms
95,300 KB
testcase_26 AC 70 ms
83,584 KB
testcase_27 AC 127 ms
118,272 KB
testcase_28 AC 70 ms
83,072 KB
testcase_29 AC 67 ms
81,408 KB
testcase_30 AC 48 ms
64,384 KB
testcase_31 AC 66 ms
80,128 KB
testcase_32 AC 70 ms
82,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from heapq import *
from functools import *
import sys,math
input = sys.stdin.readline

S = list(input())[:-1]
N = len(S)
X = list('yukicoder')
now = 0
ans = []
while now < N-8:
    if all(S[now+j]==X[j] for j in range(9)):
        ans.append('*')
        now += 9
    else:
        ans.append(S[now])
        now += 1

res = 0
for g,r in groupby(ans):
    if g=='*':
        res = max(res,len(list(r)))
print(res)
0