結果

問題 No.2298 yukicounter
ユーザー lloyzlloyz
提出日時 2023-05-12 21:25:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 206 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 76,996 KB
最終ジャッジ日時 2024-11-28 17:13:53
合計ジャッジ時間 2,732 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,228 KB
testcase_01 AC 37 ms
53,488 KB
testcase_02 AC 38 ms
52,872 KB
testcase_03 AC 58 ms
76,468 KB
testcase_04 AC 48 ms
67,352 KB
testcase_05 AC 45 ms
60,748 KB
testcase_06 AC 63 ms
76,984 KB
testcase_07 AC 47 ms
66,416 KB
testcase_08 AC 45 ms
62,400 KB
testcase_09 AC 46 ms
64,568 KB
testcase_10 AC 44 ms
60,152 KB
testcase_11 AC 46 ms
65,260 KB
testcase_12 AC 46 ms
65,144 KB
testcase_13 AC 48 ms
65,984 KB
testcase_14 AC 47 ms
65,876 KB
testcase_15 AC 41 ms
58,960 KB
testcase_16 AC 45 ms
62,380 KB
testcase_17 AC 44 ms
61,580 KB
testcase_18 AC 38 ms
53,096 KB
testcase_19 AC 37 ms
51,952 KB
testcase_20 AC 38 ms
53,436 KB
testcase_21 AC 38 ms
52,808 KB
testcase_22 AC 46 ms
66,468 KB
testcase_23 AC 47 ms
65,932 KB
testcase_24 AC 62 ms
76,996 KB
testcase_25 AC 51 ms
74,640 KB
testcase_26 AC 46 ms
63,468 KB
testcase_27 AC 58 ms
76,324 KB
testcase_28 AC 46 ms
63,280 KB
testcase_29 AC 45 ms
63,548 KB
testcase_30 AC 42 ms
60,116 KB
testcase_31 AC 44 ms
61,244 KB
testcase_32 AC 45 ms
63,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()

yukicoder = 'yukicoder'
n = len(s)
ans = 0
temp = 0
for i in range(n):
    if s[i] == yukicoder[temp % 9]:
        temp += 1
    else:
        temp = 0
    ans = max(ans, temp // 9)
print(ans)
0