結果

問題 No.2298 yukicounter
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-05-12 21:42:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 152 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-05-06 11:28:32
合計ジャッジ時間 2,847 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,000 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
51,456 KB
testcase_03 AC 55 ms
65,024 KB
testcase_04 AC 50 ms
59,904 KB
testcase_05 AC 45 ms
57,728 KB
testcase_06 AC 59 ms
68,352 KB
testcase_07 AC 55 ms
60,672 KB
testcase_08 AC 46 ms
58,112 KB
testcase_09 AC 47 ms
58,624 KB
testcase_10 AC 48 ms
52,224 KB
testcase_11 AC 48 ms
59,136 KB
testcase_12 AC 47 ms
59,136 KB
testcase_13 AC 53 ms
62,336 KB
testcase_14 AC 53 ms
62,208 KB
testcase_15 AC 41 ms
52,096 KB
testcase_16 AC 51 ms
59,648 KB
testcase_17 AC 49 ms
59,392 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 50 ms
61,952 KB
testcase_23 AC 51 ms
62,336 KB
testcase_24 AC 72 ms
80,000 KB
testcase_25 AC 57 ms
67,584 KB
testcase_26 AC 50 ms
61,056 KB
testcase_27 AC 66 ms
73,728 KB
testcase_28 AC 50 ms
61,056 KB
testcase_29 AC 50 ms
60,800 KB
testcase_30 AC 42 ms
52,096 KB
testcase_31 AC 49 ms
59,436 KB
testcase_32 AC 50 ms
60,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = "a"+input()+"a"
l = S.split("yukicoder")
ans = 0
now = 0
for x in l:
	if x:
		now = 0
	else:
		now += 1
		ans = max(ans,now+1)
# print(l)
print(ans)
0