結果

問題 No.2298 yukicounter
ユーザー yabityabit
提出日時 2023-06-23 13:40:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 77,200 KB
最終ジャッジ日時 2024-06-30 18:31:52
合計ジャッジ時間 3,614 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,980 KB
testcase_01 AC 37 ms
53,452 KB
testcase_02 AC 37 ms
52,612 KB
testcase_03 AC 61 ms
76,040 KB
testcase_04 AC 50 ms
71,072 KB
testcase_05 AC 43 ms
61,032 KB
testcase_06 AC 68 ms
77,200 KB
testcase_07 AC 50 ms
70,348 KB
testcase_08 AC 45 ms
63,216 KB
testcase_09 AC 45 ms
64,996 KB
testcase_10 AC 43 ms
59,432 KB
testcase_11 AC 47 ms
67,536 KB
testcase_12 AC 48 ms
67,784 KB
testcase_13 AC 48 ms
64,196 KB
testcase_14 AC 48 ms
63,448 KB
testcase_15 AC 38 ms
52,008 KB
testcase_16 AC 45 ms
60,752 KB
testcase_17 AC 45 ms
61,756 KB
testcase_18 AC 37 ms
52,788 KB
testcase_19 AC 37 ms
52,616 KB
testcase_20 AC 38 ms
52,576 KB
testcase_21 AC 38 ms
53,596 KB
testcase_22 AC 42 ms
58,336 KB
testcase_23 AC 46 ms
60,456 KB
testcase_24 AC 56 ms
70,416 KB
testcase_25 AC 46 ms
64,756 KB
testcase_26 AC 45 ms
60,708 KB
testcase_27 AC 52 ms
68,232 KB
testcase_28 AC 44 ms
60,848 KB
testcase_29 AC 44 ms
59,732 KB
testcase_30 AC 38 ms
53,616 KB
testcase_31 AC 43 ms
59,804 KB
testcase_32 AC 43 ms
61,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
S = S.replace('yukicoder', 'A')
ans = 0
tmp = 0
for s in S:
    if s == 'A':
        tmp += 1
    else:
        tmp = 0
    ans = max(ans, tmp)
print(ans)
0