結果

問題 No.2298 yukicounter
ユーザー n_nan_na
提出日時 2023-05-13 01:22:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 394 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,352 KB
最終ジャッジ日時 2024-05-06 14:32:31
合計ジャッジ時間 3,237 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 44 ms
51,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 76 ms
77,912 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 49 ms
61,056 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 54 ms
68,608 KB
testcase_14 WA -
testcase_15 AC 45 ms
59,648 KB
testcase_16 AC 53 ms
64,768 KB
testcase_17 AC 52 ms
63,616 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 64 ms
76,504 KB
testcase_23 AC 61 ms
76,168 KB
testcase_24 AC 96 ms
81,352 KB
testcase_25 AC 69 ms
78,216 KB
testcase_26 AC 56 ms
67,712 KB
testcase_27 AC 84 ms
79,384 KB
testcase_28 AC 60 ms
75,904 KB
testcase_29 AC 60 ms
72,832 KB
testcase_30 AC 47 ms
61,568 KB
testcase_31 AC 52 ms
69,120 KB
testcase_32 AC 61 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N = len(S)
T = "yukicoder"
M = len(T)

res = []
for i in range(N-M+1):
    fg = True
    for j in range(M):
        if S[i+j] != T[j]:
            fg = False
            break
    if fg:
        res.append(i//9 + i%9)
ans = 0
c = 1
for i in range(len(res) - 1):
    if res[i+1] == res[i] + 1:
        c += 1
        ans = max(c, ans)
    else:
        c = 1
        
print(ans)
    
0