結果

問題 No.2298 yukicounter
ユーザー moharan627moharan627
提出日時 2023-05-12 21:33:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-05-06 11:13:41
合計ジャッジ時間 3,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 45 ms
53,504 KB
testcase_03 AC 75 ms
69,376 KB
testcase_04 AC 61 ms
64,512 KB
testcase_05 AC 55 ms
61,312 KB
testcase_06 AC 87 ms
73,088 KB
testcase_07 AC 62 ms
64,128 KB
testcase_08 AC 56 ms
61,696 KB
testcase_09 AC 58 ms
62,208 KB
testcase_10 AC 53 ms
61,056 KB
testcase_11 AC 59 ms
63,104 KB
testcase_12 AC 59 ms
62,976 KB
testcase_13 AC 62 ms
63,872 KB
testcase_14 AC 63 ms
64,000 KB
testcase_15 AC 53 ms
60,032 KB
testcase_16 AC 57 ms
62,080 KB
testcase_17 AC 56 ms
61,696 KB
testcase_18 AC 45 ms
53,376 KB
testcase_19 AC 46 ms
53,376 KB
testcase_20 AC 46 ms
53,632 KB
testcase_21 AC 46 ms
53,376 KB
testcase_22 AC 64 ms
66,432 KB
testcase_23 AC 62 ms
64,768 KB
testcase_24 AC 98 ms
77,440 KB
testcase_25 AC 71 ms
68,736 KB
testcase_26 AC 60 ms
63,616 KB
testcase_27 AC 84 ms
72,960 KB
testcase_28 AC 61 ms
63,744 KB
testcase_29 AC 59 ms
63,360 KB
testcase_30 AC 53 ms
61,184 KB
testcase_31 AC 57 ms
62,336 KB
testcase_32 AC 60 ms
63,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(10 ** 6)
INF = float('inf')
#10**20,2**63に変えるのもあり
MOD = 10**9 + 7
MOD2 = 998244353
from collections import defaultdict
def ceil(A,B):
    return -(-A//B)
def solve():
    def II(): return int(sys.stdin.readline())
    def LI(): return list(map(int, sys.stdin.readline().split()))
    def LC(): return list(input())
    def IC(): return [int(c) for c in input()]
    def MI(): return map(int, sys.stdin.readline().split())
    S = input()
    N = len(S)
    yuki = "yukicoder"
    Y = [False]*N
    for i in range(N-8):
        if(S[i:i+9]==yuki):
            Y[i]=True
    Ans = 0
    #print(Y)
    for s in range(9):
        tmp=0
        for i in range(s,N-8,9):
            if(Y[i]):
                tmp+=1
            else:
                tmp=0
            Ans = max(Ans,tmp)
    print(Ans)

    return
solve()
0