結果

問題 No.2298 yukicounter
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-12 22:25:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 125,328 KB
最終ジャッジ日時 2024-11-28 18:54:58
合計ジャッジ時間 3,153 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,560 KB
testcase_01 AC 38 ms
52,756 KB
testcase_02 AC 39 ms
52,532 KB
testcase_03 AC 94 ms
108,580 KB
testcase_04 AC 67 ms
79,372 KB
testcase_05 AC 53 ms
65,708 KB
testcase_06 AC 114 ms
125,328 KB
testcase_07 AC 66 ms
78,104 KB
testcase_08 AC 56 ms
68,492 KB
testcase_09 AC 60 ms
71,256 KB
testcase_10 AC 52 ms
65,536 KB
testcase_11 AC 62 ms
75,156 KB
testcase_12 AC 63 ms
75,404 KB
testcase_13 AC 58 ms
72,288 KB
testcase_14 AC 58 ms
74,028 KB
testcase_15 AC 45 ms
61,156 KB
testcase_16 AC 54 ms
66,984 KB
testcase_17 AC 53 ms
65,604 KB
testcase_18 AC 38 ms
53,700 KB
testcase_19 AC 38 ms
52,592 KB
testcase_20 AC 37 ms
52,572 KB
testcase_21 AC 38 ms
52,556 KB
testcase_22 AC 52 ms
70,528 KB
testcase_23 AC 60 ms
73,392 KB
testcase_24 AC 84 ms
83,084 KB
testcase_25 AC 70 ms
77,956 KB
testcase_26 AC 59 ms
70,892 KB
testcase_27 AC 76 ms
80,520 KB
testcase_28 AC 52 ms
68,048 KB
testcase_29 AC 55 ms
68,864 KB
testcase_30 AC 46 ms
61,612 KB
testcase_31 AC 55 ms
68,412 KB
testcase_32 AC 59 ms
70,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a='yukicoder'
s=input()
ind=0
ans = []
g=-1
for i in range(len(s)):
    if i <= g:
        continue
    if s[i] == 'y':
        f = 0
        for j in range(1,len(a)):
            if i + j >= len(s):
                f = 1
                break
            if s[i+j] != a[j]:
                f = 1
                break
        if f == 0:
            ans.append(a)
            g=i+len(a)-1
        else:
            ans.append(0)
            
    else:
        ans.append(0)
    
A=0
cnt=0
for i in range(len(ans)):
    if ans[i] == a:
        cnt+=1
    else:
        A=max(A,cnt)
        cnt=0
        
print(max(A,cnt))
        
0