結果

問題 No.2298 yukicounter
ユーザー naut3naut3
提出日時 2023-07-08 20:35:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 68,000 KB
最終ジャッジ日時 2024-07-22 16:29:17
合計ジャッジ時間 3,832 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 242 ms
49,604 KB
testcase_04 AC 94 ms
25,180 KB
testcase_05 AC 36 ms
13,184 KB
testcase_06 AC 397 ms
68,000 KB
testcase_07 AC 88 ms
23,708 KB
testcase_08 AC 44 ms
14,848 KB
testcase_09 AC 60 ms
18,048 KB
testcase_10 AC 31 ms
11,904 KB
testcase_11 AC 74 ms
20,628 KB
testcase_12 AC 73 ms
20,368 KB
testcase_13 AC 49 ms
14,868 KB
testcase_14 AC 51 ms
15,252 KB
testcase_15 AC 26 ms
10,624 KB
testcase_16 AC 35 ms
12,288 KB
testcase_17 AC 32 ms
11,776 KB
testcase_18 AC 25 ms
10,624 KB
testcase_19 AC 25 ms
10,624 KB
testcase_20 AC 24 ms
10,624 KB
testcase_21 AC 25 ms
10,624 KB
testcase_22 AC 31 ms
11,008 KB
testcase_23 AC 30 ms
11,008 KB
testcase_24 AC 57 ms
12,540 KB
testcase_25 AC 39 ms
11,516 KB
testcase_26 AC 29 ms
10,880 KB
testcase_27 AC 49 ms
12,544 KB
testcase_28 AC 29 ms
10,880 KB
testcase_29 AC 28 ms
10,880 KB
testcase_30 AC 25 ms
10,624 KB
testcase_31 AC 27 ms
10,880 KB
testcase_32 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    S = input()
    S = S.replace("yukicoder", "-")

    rle = [[S[0], 1]]

    for i in range(1, len(S)):
        if rle[-1][0] == S[i]:
            rle[-1][1] += 1
        else:
            rle.append([S[i], 1])

    ans = 0

    for (s, c) in rle:
        if s == "-":
            ans = max(ans, c)

    print(ans)


main()
0