結果

問題 No.2298 yukicounter
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-13 16:02:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 64,416 KB
最終ジャッジ日時 2024-09-13 16:03:40
合計ジャッジ時間 2,827 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,104 KB
testcase_01 AC 37 ms
53,620 KB
testcase_02 AC 38 ms
51,936 KB
testcase_03 AC 50 ms
62,544 KB
testcase_04 AC 45 ms
60,736 KB
testcase_05 AC 41 ms
58,656 KB
testcase_06 AC 52 ms
63,836 KB
testcase_07 AC 43 ms
59,668 KB
testcase_08 AC 44 ms
59,548 KB
testcase_09 AC 42 ms
59,184 KB
testcase_10 AC 42 ms
59,168 KB
testcase_11 AC 44 ms
59,472 KB
testcase_12 AC 44 ms
59,520 KB
testcase_13 AC 44 ms
61,540 KB
testcase_14 AC 44 ms
60,404 KB
testcase_15 AC 37 ms
53,728 KB
testcase_16 AC 41 ms
59,760 KB
testcase_17 AC 41 ms
59,344 KB
testcase_18 AC 36 ms
52,920 KB
testcase_19 AC 37 ms
51,748 KB
testcase_20 AC 36 ms
52,992 KB
testcase_21 AC 38 ms
52,972 KB
testcase_22 AC 42 ms
59,756 KB
testcase_23 AC 42 ms
60,152 KB
testcase_24 AC 48 ms
64,416 KB
testcase_25 AC 43 ms
60,892 KB
testcase_26 AC 42 ms
60,212 KB
testcase_27 AC 47 ms
62,912 KB
testcase_28 AC 41 ms
60,428 KB
testcase_29 AC 43 ms
60,084 KB
testcase_30 AC 37 ms
52,404 KB
testcase_31 AC 41 ms
58,652 KB
testcase_32 AC 42 ms
59,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
n=len(s)
s+="##########"
t="yukicoder"
i=0
a=0
c=0
while i<=n:
	if s[i:i+9]==t:
		c+=1
		i+=9
	else:
		a=max(a,c)
		c=0
		i+=1
print(a)
0