結果

問題 No.2298 yukicounter
ユーザー MichirakaraMichirakara
提出日時 2023-05-12 21:28:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 191 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-05-06 11:03:52
合計ジャッジ時間 3,461 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 319 ms
12,288 KB
testcase_04 AC 141 ms
11,136 KB
testcase_05 AC 47 ms
10,624 KB
testcase_06 AC 453 ms
13,184 KB
testcase_07 AC 131 ms
11,264 KB
testcase_08 AC 58 ms
10,880 KB
testcase_09 AC 87 ms
10,880 KB
testcase_10 AC 37 ms
10,752 KB
testcase_11 AC 104 ms
11,008 KB
testcase_12 AC 100 ms
11,008 KB
testcase_13 AC 61 ms
11,008 KB
testcase_14 AC 65 ms
11,008 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 40 ms
10,880 KB
testcase_17 AC 35 ms
10,624 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 26 ms
10,496 KB
testcase_20 AC 25 ms
10,624 KB
testcase_21 AC 25 ms
10,624 KB
testcase_22 AC 47 ms
11,136 KB
testcase_23 AC 42 ms
11,136 KB
testcase_24 AC 120 ms
12,536 KB
testcase_25 AC 64 ms
11,516 KB
testcase_26 AC 38 ms
10,880 KB
testcase_27 AC 90 ms
12,544 KB
testcase_28 WA -
testcase_29 AC 34 ms
10,880 KB
testcase_30 AC 26 ms
10,624 KB
testcase_31 AC 33 ms
10,880 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()
ma=0
now=0
i=0
while i<len(s):
	if s[i]=="y":
		if i+8>=len(s):
			break
		if s[i:i+9]=="yukicoder":
			now+=1
			i+=8
	else:
		ma=max(ma,now)
		now=0
	i+=1
ma=max(ma,now)
print(ma)
0