結果

問題 No.2298 yukicounter
ユーザー H20H20
提出日時 2023-05-19 09:08:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 120,192 KB
最終ジャッジ日時 2024-05-09 23:31:57
合計ジャッジ時間 4,042 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,532 KB
testcase_01 AC 37 ms
52,428 KB
testcase_02 AC 38 ms
52,436 KB
testcase_03 AC 94 ms
103,804 KB
testcase_04 AC 68 ms
85,588 KB
testcase_05 AC 47 ms
64,060 KB
testcase_06 AC 114 ms
117,564 KB
testcase_07 AC 56 ms
77,240 KB
testcase_08 AC 48 ms
66,384 KB
testcase_09 AC 52 ms
70,296 KB
testcase_10 AC 46 ms
62,260 KB
testcase_11 AC 53 ms
74,500 KB
testcase_12 AC 52 ms
71,992 KB
testcase_13 AC 56 ms
75,600 KB
testcase_14 AC 53 ms
74,484 KB
testcase_15 AC 43 ms
59,056 KB
testcase_16 AC 48 ms
66,528 KB
testcase_17 AC 48 ms
65,804 KB
testcase_18 AC 38 ms
53,372 KB
testcase_19 AC 37 ms
53,164 KB
testcase_20 AC 37 ms
53,284 KB
testcase_21 AC 38 ms
53,212 KB
testcase_22 AC 50 ms
75,104 KB
testcase_23 AC 51 ms
74,424 KB
testcase_24 AC 111 ms
120,192 KB
testcase_25 AC 77 ms
95,312 KB
testcase_26 AC 48 ms
70,024 KB
testcase_27 AC 89 ms
108,584 KB
testcase_28 AC 46 ms
68,948 KB
testcase_29 AC 44 ms
67,500 KB
testcase_30 AC 39 ms
59,516 KB
testcase_31 AC 41 ms
64,608 KB
testcase_32 AC 46 ms
68,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = list(input())
YUKI = list('yukicoder')
ans = 0
temp = 0
y = 0
for s in S:
    if s==YUKI[y]:
        y+=1
        if y==len(YUKI):
            temp+=1
            y=0
    else:
        ans = max(temp,ans)
        temp=0
        y=0
print(max(temp,ans))
0