結果

問題 No.2298 yukicounter
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-13 16:00:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 143 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 81,684 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-09-13 16:01:53
合計ジャッジ時間 2,712 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,620 KB
testcase_02 AC 39 ms
53,100 KB
testcase_03 AC 50 ms
62,952 KB
testcase_04 AC 46 ms
59,988 KB
testcase_05 AC 44 ms
58,508 KB
testcase_06 AC 58 ms
64,680 KB
testcase_07 AC 45 ms
60,124 KB
testcase_08 AC 45 ms
60,304 KB
testcase_09 AC 44 ms
59,352 KB
testcase_10 AC 44 ms
58,488 KB
testcase_11 AC 44 ms
59,876 KB
testcase_12 AC 45 ms
59,476 KB
testcase_13 AC 45 ms
60,676 KB
testcase_14 AC 47 ms
60,556 KB
testcase_15 AC 39 ms
52,348 KB
testcase_16 AC 44 ms
59,712 KB
testcase_17 AC 43 ms
58,796 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 40 ms
53,144 KB
testcase_21 AC 40 ms
52,364 KB
testcase_22 WA -
testcase_23 AC 45 ms
59,280 KB
testcase_24 AC 51 ms
65,408 KB
testcase_25 AC 46 ms
61,860 KB
testcase_26 AC 44 ms
59,724 KB
testcase_27 AC 49 ms
63,504 KB
testcase_28 AC 43 ms
59,408 KB
testcase_29 AC 43 ms
59,376 KB
testcase_30 AC 39 ms
53,176 KB
testcase_31 AC 43 ms
58,668 KB
testcase_32 AC 44 ms
59,120 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