結果

問題 No.2298 yukicounter
ユーザー ああいいああいい
提出日時 2023-05-12 22:48:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 81,940 KB
最終ジャッジ日時 2024-05-06 12:50:56
合計ジャッジ時間 3,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 36 ms
51,456 KB
testcase_03 AC 60 ms
71,936 KB
testcase_04 AC 55 ms
65,280 KB
testcase_05 AC 50 ms
62,336 KB
testcase_06 AC 63 ms
75,776 KB
testcase_07 AC 50 ms
64,512 KB
testcase_08 AC 50 ms
62,720 KB
testcase_09 AC 51 ms
63,488 KB
testcase_10 AC 47 ms
60,288 KB
testcase_11 AC 50 ms
63,360 KB
testcase_12 AC 50 ms
63,488 KB
testcase_13 AC 55 ms
68,224 KB
testcase_14 AC 57 ms
68,992 KB
testcase_15 AC 41 ms
57,600 KB
testcase_16 AC 54 ms
65,024 KB
testcase_17 AC 51 ms
63,616 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 50 ms
67,712 KB
testcase_23 AC 55 ms
68,736 KB
testcase_24 AC 79 ms
81,940 KB
testcase_25 AC 67 ms
78,464 KB
testcase_26 AC 53 ms
66,432 KB
testcase_27 AC 74 ms
79,040 KB
testcase_28 AC 51 ms
66,560 KB
testcase_29 AC 52 ms
64,896 KB
testcase_30 AC 43 ms
59,648 KB
testcase_31 AC 48 ms
62,848 KB
testcase_32 AC 58 ms
66,432 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
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