結果

問題 No.2298 yukicounter
ユーザー ああいいああいい
提出日時 2023-05-12 22:49:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 82,000 KB
最終ジャッジ日時 2024-11-28 19:24:57
合計ジャッジ時間 2,862 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,968 KB
testcase_01 AC 32 ms
51,840 KB
testcase_02 AC 33 ms
51,840 KB
testcase_03 AC 51 ms
71,552 KB
testcase_04 AC 47 ms
65,536 KB
testcase_05 AC 45 ms
61,696 KB
testcase_06 AC 55 ms
75,904 KB
testcase_07 AC 45 ms
64,000 KB
testcase_08 AC 45 ms
62,208 KB
testcase_09 AC 47 ms
63,744 KB
testcase_10 AC 41 ms
60,288 KB
testcase_11 AC 43 ms
63,360 KB
testcase_12 AC 45 ms
62,976 KB
testcase_13 AC 46 ms
68,352 KB
testcase_14 AC 49 ms
69,376 KB
testcase_15 AC 36 ms
57,984 KB
testcase_16 AC 45 ms
64,768 KB
testcase_17 AC 43 ms
63,104 KB
testcase_18 AC 33 ms
51,968 KB
testcase_19 AC 35 ms
51,712 KB
testcase_20 AC 32 ms
52,224 KB
testcase_21 AC 32 ms
51,968 KB
testcase_22 AC 45 ms
67,584 KB
testcase_23 AC 48 ms
68,608 KB
testcase_24 AC 70 ms
82,000 KB
testcase_25 AC 58 ms
78,464 KB
testcase_26 AC 46 ms
66,688 KB
testcase_27 AC 62 ms
79,032 KB
testcase_28 AC 44 ms
66,432 KB
testcase_29 AC 44 ms
65,536 KB
testcase_30 AC 37 ms
59,264 KB
testcase_31 AC 41 ms
62,592 KB
testcase_32 AC 44 ms
65,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

U = "yukicoder"
l = []
i = 0
while i < len(S):
	if S[i] == "y":
		j = 0
		while i + j < len(S) and S[i + j] == U[j]:
			j += 1
			if j == len(U):
				l.append(i)
				break
		i += j
	else:
		i += 1
ans = 0
now = 0
if l:ans = 1
for i in range(1,len(l)):
	if l[i] - l[i-1] == len(U):
		if now == 0:
			now = 2
		else:
			now += 1
	else:
		if now > ans:
			ans = now
		now = 0
if now > ans:ans = now
print(ans)
0